Advertisement
hxxxrz

Crhbgn dsdjlf ccskjr

Nov 28th, 2017
412
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <?php
  2. error_reporting(E_ALL);
  3. ignore_user_abort(true);
  4. ini_set('display_errors', 'on');
  5. ini_set('error_log','error_log.txt');
  6. header('X-Robots-Tag: noindex');
  7.  
  8. require_once('php/func.php');
  9.  
  10. $pagelist = $db->query("SELECT url, category FROM pages WHERE date < ".$time." ORDER BY rand() LIMIT 10;");
  11.  
  12. $i =0;
  13. while ($echo = $pagelist->fetchArray()) {
  14. $i++;
  15.  
  16. echo $host.'/'.$echo['category'].'/'.$echo['url'].'/<br />';
  17.  
  18. }
  19. ;
  20.  
  21. $db->close();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement