Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a way to make php print out some results based on a given time? Say I tell it to

echo"BEANS";

at 12:00pm tomorrow.

share|improve this question
What if no one visited the page at 12:00pm? What if someone visited the page at 12:00:01pm? – Yeroon Nov 23 '10 at 20:49

1 Answer

up vote 5 down vote accepted

PHP web applications are meant to run for only a few seconds to a couple of minutes. Start a cron job to run that PHP script @12pm. On Windows, use Task Scheduler.

share|improve this answer
Yep, this is your answer... +1 – logic-unit Nov 23 '10 at 21:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.