Access temp table created by PHP with another PHP

I have a script(say process.php) which inserts data into a temporary table(hold). So while its inserting the data is it possible to access the temp table from another php page? I tried reading the table from another but it says table does not exist. Any ideas?

don’t use a temporary table. it only exists for the lifetime of the first script.

You could ofcourse load all the temp data in a session or a cookie.
And delete it after useage ?

OK I will try storing it in session. Thanks!

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.