$con = mysql_connect("localhost","peter","abc123"); - if (!$con)
- {
- die('Could not connect: ' . mysql_error());
- }
// some code ?>
关闭连接
脚本一结束,就会关闭连接。
如需提前关闭连接,请使用 mysql_close() 函数。
$con = mysql_connect("localhost","peter","abc123"); - if (!$con)
- { bbs.it-home.org
- die('Could not connect: ' . mysql_error());
- }
// some code mysql_close($con); - ?>
|