I want to use temporary tables on my site that hold data from a query. Every page load I do this:
$Link = mysql_connect(....blah);
Does that cause all the data in the temporary table to be deleted? After I create the temporary table the first time, everything works fine. But, when I open another page and try to get some of the data stored in the temp table, there is nothing there.
So, I know the initial creation and insertion works, but it doesn't remain after I load a new page.
If the $Link every page is causing a problem, is there a way I could store the $Link data and only connect when I don't have a connection?