Advertisement
janter13

cron job

Aug 25th, 2014
275
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. <?php
  2.  
  3. { auto('http://jan-ter.tk/twitter/crontwit.php'); }
  4. { auto('http://jan-ter.tk/cron/st.php'); }
  5. { auto('http://jan-ter.tk/cron/sta.php'); }
  6.  
  7. function auto($url){
  8. $cx=curl_init();
  9. curl_setopt($cx,CURLOPT_URL,$url);
  10. curl_setopt($cx,CURLOPT_RETURNTRANSFER,1);
  11. $ch=curl_exec($cx);
  12. curl_close($cx);
  13. return($ch);
  14. }
  15. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement