How to use the same temporary table

admin

Administrator
Staff member
Dear all,

I need to write a small program. There are several input fields on the web-page. After inputed these fields and press a button, another php update program is called to create a temporay table in MYSQL and insert the all information as a record into this temporary table. This update program will be closed automatically. When finished next inputs of the web-page. This information is saved a next record of the pervious temporary table with call php update program again. However, this updated program cannot reopen the pervious temporary table. How can I do?

The key point may be the way to connect to MYSQL server. I use mysql_pconnect to connect to MYSQL. It is because that the temporary table will be deleted automatically when the connection is dropped.
 
Back
Top