theo-savus
08-22-2010, 07:37 PM
Hello, i am trying to create a table but at a specific time, for example if it's 2 pm and 25 minutes create a table...and i can't get it to work
here is my code
$cerereSQL2 = 'CREATE TABLE `' .$today2. '` (
`id` int(11) NOT NULL auto_increment,
`victima` text NOT NULL,
`vorbe` text NOT NULL,PRIMARY KEY (`id`))';
if ((date("H")== 13) && (date("i") == 22) && (date("s")== 30))
{mysql_query($cerereSQL2) or die(mysql_error());}
thank you in advance
here is my code
$cerereSQL2 = 'CREATE TABLE `' .$today2. '` (
`id` int(11) NOT NULL auto_increment,
`victima` text NOT NULL,
`vorbe` text NOT NULL,PRIMARY KEY (`id`))';
if ((date("H")== 13) && (date("i") == 22) && (date("s")== 30))
{mysql_query($cerereSQL2) or die(mysql_error());}
thank you in advance