crontab -e will open the crontab editor for your personal crontab, assuming the admin allows them. Here you'd put a line like
0 * * * * /usr/bin/php /home/matt_tm/php/runme.php
once for each script, with /usr/bin/php being the full path to your commandline php binary, and the full path to the php file you want to run.
That will run the script the 0th minute (:00) of every hour, every day of the month, every month, and every day of the week (you might want to spread them out so one script starts at 0, one starts at the 5th minute and so on). The commands in your personal crontab are run as your account, so all your script needs in this case is for your account to be able to read the script, execute the php binary, and have access to all the files the script needs.
/usr/bin/curl http://example.com/scheduled_php/runme.php(or/usr/bin/wget) – DerfK Oct 29 '10 at 21:37