> So once a user logs into a MySQL Server via PHP, if they don't logout, they > stay logged in forever???????
Depends how you write your application. If you are using persistent connections you log in and out of mysql durig a single request. If you use persistent connections you log in once and leave the connection up until the httpd process it is asscoiated with terminates. Your Apache settings define how long an httpd process will live. -Rasmus -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]