W3Schools.com

PHP mysql_close() Function


PHP MySQL Reference Complete PHP MySQL Reference

Definition and Usage

The mysql_close() function closes a non-persistent MySQL connection.

This function returns TRUE on success, or FALSE on failure.

Syntax

mysql_close(connection)

Parameter Description
connection Optional. Specifies the MySQL connection to close. If not specified, the last connection opened by mysql_connect() is used.


Tips and Notes

Tip: Using mysql_close() isn't required, as non-persistent connections are automatically closed at the end of the script.


Example

<?php
$con = mysql_connect("localhost","mysql_user","mysql_pwd");
if (!$con)
  {
  die('Could not connect: ' . mysql_error());
  }

// some code

mysql_close($con);
?>


PHP MySQL Reference Complete PHP MySQL Reference
WEB HOSTING
Best Web Hosting
PHP MySQL Hosting
Best Hosting Coupons
UK Reseller Hosting
Cloud Hosting
Top Web Hosting
$7.95/mo SEO Hosting
Premium Website Design
WEB BUILDING
XML Editor - Free Trial!
FREE Website BUILDER
Free Website Templates Free CSS Templates
Make Your Own Website
W3SCHOOLS EXAMS
Get Certified in:
HTML, CSS, JavaScript, XML, PHP, and ASP
W3SCHOOLS BOOKS
New Books:
HTML, CSS
JavaScript, and Ajax
STATISTICS
Browser Statistics
Browser OS
Browser Display
SHARE THIS PAGE