need help for cron

i want to run a php file under cron after 25 OR 30 seconds.
how can i setup that.

Thanks

What do you mean by after 25 or 30 seconds?

Cron’s (and at’s) resolution is only to the minute.

The following command will run after 1 min.if i am not mistaken:
*/1 * * * *
Is it possible to divide the min and run it after 30sec.

You could sleep for 30 seconds and then run the job.