How will you close a MySql database using PHP?

Submitted by: Administrator
Its simplest function mysql_close PHP provides to close a database connection. This function takes connection resource returned by mysql_connect function. It returns TRUE on success or FALSE on failure.

bool mysql_close ( resource $link_identifier );

If a resource is not specified then last opend database is closed.
Submitted by:

Read Online Sr. PHP Programmer Job Interview Questions And Answers