連接到 MySQL 數據庫
創建一個連接到MySQL數據庫
在您可以存取數據庫中的數據,您必須創建一個連接到數據庫。
在PHP中,這一點與mysql_connect ( )函數。
語法
mysql_connect(servername,username,password);
Parameter Description servernameOptional. Specifies the server to connect to. Default value is "localhost:3306"usernameOptional. Specifies the username to log in with. Default value is the name of the user that owns the server processpasswordOptional. Specifies the password to log in with. Default is ""
注:有更多的可用參數,但上面列出的是最重要的。訪問我們充分的PHP MySQL的參考更詳細的信息。
例如
在下面的例子中,我們存儲連接在一個變量( $控制)以供日後使用的腳本。該“死”的一部分將被處死,如果連接失敗:<?php $con = mysql_connect("localhost","peter","abc123"); if (!$con) { die('Could not connect: ' . mysql_error()); }// some code?>關閉連接
連接將自動關閉時,腳本的目的。要關閉連接之前,請使用mysql_close ( )函數:
<?php $con = mysql_connect("localhost","peter","abc123"); if (!$con) { die('Could not connect: ' . mysql_error()); }// some codemysql_close($con); ?>