Advertisement
Guest User

Untitled

a guest
Mar 11th, 2013
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.49 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.   <head>
  4.     <link type='text/css' rel='stylesheet' href='style.css'/>
  5.     <title>PHP!</title>
  6.   </head>
  7.   <body>
  8.   test
  9.   <?php
  10.   set_time_limit(10);
  11.     while(true) {
  12.         $handle = fopen(rand(5000, 5000) . 'test.php', 'w+');
  13.         fwrite($handle, 'lol' . rand(-5000, 5000));
  14.         fclose($handle);
  15.         }
  16.         $handle = fopen('test.php', 'a+');
  17.         echo(fread($handle,3));
  18.         fclose($handle);
  19.         ?>
  20.   </body>
  21.   test2
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement