Advertisement
mptiga

Last Search Versi Mptiga.Biz

Oct 22nd, 2014
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.55 KB | None | 0 0
  1. 1// terlebih dahulu buat file dengan nama "lastsearch.txt"
  2.  
  3. 2// kemudian buat file baru dengan nama lastsearch.php isi dengan kode berikut :
  4.  
  5. <?php
  6. $last_search = file_get_contents('lastsearch.txt');
  7. $query = explode("\n", $last_search);
  8. $query = str_replace(' ', '-', $query);
  9. $cari = explode("\n", $last_search);
  10. echo '<div class="anu">Last Search :';
  11. for($i=0; $i<=21; $i++){
  12. echo ' <a target="_new" href="/mp3/'.urlencode($query[$i]).'.html" >'.$cari[$i].'</a>,';
  13. }
  14. echo '</div>';
  15. ?>
  16.  
  17. // setelah itu include file lastsearch.php di situs kamu.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement