You either need access to the cpanel or a terminal (SSH) in order to set up a cron job.
If you are using cpanel, you can just read these instructions to add a job
http://www.siteground.com/tutorials/cpanel/cron_jobs.htm
Where, the command is the actual linux command being executed.
If you have shell access to the server (not FTP) you can set up a job by running this command
crontab cron.txt
where the contents of the cron.txt are something like this
* * * * * /usr/bin/php /home/mydir/project/file.php
Where the starts imply the times the job runs (in this case every minute)
You can search for online crontab makers which will help you find the syntax for the time you need to execute your command but you can't do this with just FTP and PHPMyAdmin access.