[PHP-DB] mysql_close()

2010-02-20 Thread Ron Piggott
Does mysql_close() close all open database connections? How would I specify which connection to close? Ron

Re: [PHP-DB] mysql_close()

2010-02-20 Thread Patrick Price
According to php.net, if you don't specify a link iedentifier it closes the last nonpersistent connection.   http://us3.php.net/mysql_close Patrick -- Sent from my Palm Pre Ron Piggott wrote: Does mysql_close() close all open database connections? How would I specify which connection to

Re: [PHP-DB] mysql_close()

2010-02-20 Thread Ron Piggott
Guys thanks for your help. When I went back to my code I figured out what threw me off: I only used one database connection to begin with ... I had created a user that exists on the two databases for the part of the application I am writing. I forgot about this. Thanks! Ron -Original