Hi Mark,
If you are using MySQL you can use this query to create a new table but, this will also copy the data(You can delete the simply by executing .... delete from .....isn't it?)
$qry="create table $newtablename select * from $sourcetablename";
Cheers
Ajay