Advertisement
Guest User

Untitled

a guest
Feb 2nd, 2012
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. <?
  2. $content = '<?php echo "ahmet"; ?>';
  3.  
  4. for($i=1; $i<251; $i++) {
  5.         $myFile = $i.".php";
  6.         $fh = fopen($myFile, 'w') or die("can't open file");
  7.         fwrite($fh, $content);
  8.         fclose($fh);
  9. }
  10. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement