To schedule your website to run a particular PHP file (to email or some other things):
- Go to your website control panel
- Go to Cron Job (it is the scheduler in Linux system)
- Usually you can choose GUI method or coding method to set the schedule
- You need to set the minutes, hours, dates, months and weekdays
- For the command to be run:
lynx -dump http://your.website.url/yourphpfile.php
lynx is the command to execute the PHP file - Usually you can key in the email to be sent when the scheduler execute the commands




