Advertisement
r13y5h4

php convig viewer

Nov 21st, 2012
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.55 KB | None | 0 0
  1. //Config Viewer by anharku a.k.a r13y5h4
  2. //www.codenesia.com
  3. //www.anharku.net
  4. // “Don’t modify if you not know it”
  5. // “user own risk”
  6. <html>
  7. <head>
  8. <title>Config Viewer</title>
  9. <body text="#006400" bgcolor="#000000">
  10. <?php
  11. $path = "configuration.php"; // isi dengan path & nama file config misal: configuration.php
  12. $nama_file = "$path";
  13. $isi_file = file($nama_file);
  14. $jml_baris = sizeof($isi_file);
  15. ?>
  16. <textarea cols="80" rows="25">
  17. <?php
  18. for ($i=0; $i<$jml_baris; $i++)
  19. {
  20. print "$isi_file[$i]";
  21. }
  22. ?>
  23. </body>
  24. </textarea>
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement