LawyerMorty

Untitled

Apr 26th, 2014
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. <?php
  2. include( "sdk/mta_sdk.php" );
  3. $input = mta::getInput();
  4. $log = $input[0];
  5.  
  6. $dat = file_get_contents('adminlog.txt');
  7. $toadd = "$log\n"; // This is what to add to the beginning of the file
  8. file_put_contents('adminlog.txt', $toadd . $dat);
  9. ?>
Advertisement
Add Comment
Please, Sign In to add comment