How can I run a function at a given time and date?
Example: I have a function that needs to run on the 12th of each month at 10AM.
This page will be running
maybe use and iframe with meta refresh and workout content server side
iframe
or use javascripts setInterval
var interval = 300000; // run in 5 minutes window.setInterval("reloadRefresh();", interval); function reloadRefresh() { // do whatever }
and