Re: [PHP] Maintains a persistent connection

2003-09-24 Thread Jason Wong
On Thursday 25 September 2003 12:08, ascll wrote: > Question: > = > Could my .php page ALWAYS get the latest values WITHOUT reload the page? That would be magic. -- Jason Wong -> Gremlins Associates -> www.gremlins.biz Open Source Software Systems Integrators * Web Design & Hosting * In

Re: [PHP] Maintains a persistent connection

2003-09-24 Thread Curt Zirzow
* Thus wrote ascll ([EMAIL PROTECTED]): > > [...] > > Question: > = > Could my .php page ALWAYS get the latest values WITHOUT reload the page? no. Curt -- "I used to think I was indecisive, but now I'm not so sure." -- PHP General Mailing List (http://www.php.net/) To unsubscribe, v

Re: [PHP] Maintains a persistent connection

2003-09-24 Thread ascll
First of all, thank you for your reply. I have tried to use 'mysql_pconnect()' to connect to my database, but what I want to achieve are these: 1) Value for "Field_A" is "Value_A" and value for "Field_B" is "Value_B", by default 2) I load my "getData.php" page and get the values ("Valua_A, Valu

Re: [PHP] Maintains a persistent connection

2003-09-24 Thread Chris Shiflett
--- ascll <[EMAIL PROTECTED]> wrote: > Could I use the PHP to maintain a persistent connection with MySQL > database? Yes: www.php.net/mysql_pconnect > My persistent connection here should work in this way: - > > 1) Using the .php file the retrieve data from Table_A that contain > 2 fields 'Fi

[PHP] Maintains a persistent connection

2003-09-24 Thread ascll
Greetings, Could I use the PHP to maintain a persistent connection with MySQL database? My persistent connection here should work in this way: - 1) Using the .php file the retrieve data from Table_A that contain 2 fields 'Field_A' and 'Field_B', with the value 'Value_A' and 'Value_B' respective