Advertisement
ujiajah1

include.php / grabbing site

May 27th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.32 KB | None | 0 0
  1. <div class="content">
  2.     <h1 style="font-weight:bold; font-size:50px;">HIPSTER</h1>
  3.     <p style="color:#000000; font-size:30px; font-weight:bold;">
  4.             <?php   $alamat = "SasakPanjang-TajurHalang";
  5.                     $phone = "0878-8693-7368 ";
  6.                 $admin = "Puji Ermanto";
  7.                 $file = fopen("server.txt", "r")
  8.                 or die("file tidak bisa dibuka"); ?>
  9.  
  10. <table  style="width:40%" font size="60px" align="center">
  11. <tr>
  12. <th align="left">Alamat</th>
  13. <td height="30" width:"30"><?php echo $alamat; ?></td>
  14. </tr>
  15. <tr>
  16. <th align="left">Telephone</th>
  17. <td height="30"><?php echo $phone; ?></td>
  18. </tr>
  19. <tr>
  20. <th align="left">Admin IT</th>
  21. <td height="30"><?php echo $admin; ?></td>
  22. </tr >
  23. </table></p>
  24.  
  25.  
  26. <p style="font-size:30px; font-weight:bold;">
  27. <?php echo fread($file, filesize("server.txt"));
  28. fclose($file); ?>
  29. <?php include ('time.php'); ?> <?php echo'<br>';?>
  30. <?Php
  31.  
  32. for($a = 1; $a<=58; $a++)
  33. {
  34.     echo "=";
  35. }?><?php echo'<br>';?>
  36. </p>
  37.  
  38. <?php
  39. include 'aset.css';
  40. $grab = file_get_contents('http://172.16.0.2/squidreport//2016/05/index.html');
  41. $start = '<h4>Cache Statistics on 2016-05</h4>';
  42. $end = '<table class="graphs"></table>';
  43. $startposisi = strpos($grab, $start);
  44. $sendposisi = strpos($grab, $send);
  45. $longtext = $endposisi - $startposisi;
  46. $result = substr($grab, $startposisi, $longtext);
  47. echo $result;
  48. ?>
  49.  
  50. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement