I don't know much about cron jobs but I think I've got it !
if I load a crontab, does it remain in computer's memory or do I need it to run it every time I power on the computer ?

<later edit>
Seems like my crontab won't start !
Any help is appreciated !
- I've created a script example.php and put it on my desktop
- opened terminal
- checked my crontab with :
nydaz@nydaz ~ $ crontab -l- no crontab for nydaz
- created a file nydaz.cron with the following content :
# m h dom mon dow command
25 0 * * * php /home/nydaz/Desktop/example.php
- i want it to run everyday at 0:25
- executed from terminal with
nydaz@nydaz ~ $ crontab /home/nydaz/Desktop/nydaz.cron- it won't start
what should I do ?

</later edit>