I've been using MySQL/PHP for a while now, but I've never used an explicit close for the database connection. Is there such a thing, and has anyone had good/bad experience with it?
Nate
yes, there is such a thing: mysql_close() but forget it, it's not necessary since connections are automatically closed at the end of the parsing process (at least those established with mysql_connect() )
Matthias