The reason I'm asking is because I have a database. And I want the php script to run regularly (every millisecond if i could, but every 5 minutes would be fine) on the server. This is the update script. Here is the code:
Code: Select all
include("dbinfo.inc.php");
@mysql_connect(localhost,$username,$password) or die ("Could not connect to database\n");
@mysql_select_db($database) or die ("Database does not exist or could not connect\n");
$update = "UPDATE signups SET completed='Yes' WHERE paid='Yes' AND followup='Yes'";
mysql_close();