Is there a command to empty a table?
or would I just use a SQL statement in conjunction with a query statement?
If so is this the correct syntax
$table = "abc";
$sql = "DELETE FROM $table WHERE *";
mysql_query($sql);
Would that delete every row in table abc?
Thanks, Regards X
PS: Also is it possible to have this automated so at X time of each hour, day, week, etc it is done?