bradgrafelman;11036167 wrote:Is this table only going to be used for the current execution of the script? In other words, should you perhaps be using a TEMPORARY table instead?
The temporary table seems like the ticket...but of course, I can't get it to work. I have admin rights to use it, but maybe I've code wrong...?
$maketemp = "
CREATE TEMPORARY TABLE eraseMe (
sortOrder int NOT NULL,
field varchar(2),
site varchar(2),
timeGame varchar(10),
tourn_ID varchar(2)) ";
mysqli_query($cxn, $maketemp) or die ("Sql error : ".mysqli_error($cxn));