Advertisement
ujiajah1

crul-grabbing-kaskus.php

May 13th, 2016
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.37 KB | None | 0 0
  1. <?php
  2. include 'style.css';
  3. $homepage = file_get_contents('http://www.kaskus.co.id/');
  4. $string_awal = '<section class="hot-thread col-xs-6">';
  5. $string_akhir = '</section>';
  6. $pos_awal = strpos($homepage, $string_awal);
  7. $pos_akhir = strpos($homepage, $string_akhir);
  8. echo "<div class='your_class'>";
  9. echo substr($homepage, $pos_awal, $pos_akhir);
  10. echo "</div>";
  11. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement