php
Using Shorthand for IF/ELSE in PHP
by wajatimur on Jan.16, 2009, under php
Using shorthand for if/else in php will save you lot of time and code line.
How To Copy From Remote File To Local Server Using PHP
by wajatimur on Jan.04, 2009, under php
1 2 3 4 5 6 | $file = 'example.txt'; $newfile = 'example.txt.bak'; if (!copy($file, $newfile)) { echo "failed to copy $file...\n"; } |

