0

i want make script evry 15min connect to 4 address and get new link . how i can make page for do this without open page every time and script do this automate???

php can make this script? if i need some program please advise me .

like this :

 $ad1='http://www.avator.com';
 $ad2='http://www.miniclip.com';
 $ad3='http://www.nikani.com';
    link1=str('http://www.','$ad1);
    do This evry 15 min on server automate
behzad n
  • 239
  • 2
  • 5
  • 15

1 Answers1

1

As @k102 mentioned, use cron. It allows you to schedule a job to occur at any time interval. If you are on Windows, check out this Stack Overflow answer: What is the Windows version of cron?

Community
  • 1
  • 1
dpk2442
  • 691
  • 3
  • 8