php mysql銜接數據庫實例。本站提示廣大學習愛好者:(php mysql銜接數據庫實例)文章只能為提供參考,不一定能成為您想要的結果。以下是php mysql銜接數據庫實例正文
小插曲,早晨把數據的my.ini編碼改成utf-8,然後數據庫一向不克不及啟動,改回gbk便可以,有曉得的告訴下成績地點。
由於是鏈接數據庫,也沒甚麼好解釋的,直接上代碼吧。
<?php /* Connect to a MySQL server 銜接數據庫辦事器 */ $link = mysqli_connect( 'localhost', /* The host to connect to 銜接MySQL地址 */ 'jian', /* The user to connect as 銜接MySQL用戶名 */ '123456', /* The password to use 銜接MySQL暗碼 */ 'jian'); /* The default database to query 銜接數據庫稱號*/ if (!$link) { printf("Can't connect to MySQL Server. Errorcode: %s ", mysqli_connect_error()); exit; }else echo '數據庫銜接上了!'; /* Close the connection 封閉銜接*/ mysqli_close($link); ?>
這裡的jian實際上是個中一個名字為jian的庫的治理員,不須要寫數據庫治理員,由於現實項目我們能夠獲得的就是一個庫治理員的數據庫賬號、暗碼、還有主機地址。
測試成果:
本來的數據庫表:
操作1:查詢分數年夜於60的先生id,班級和分數
SELECT id,class,scores FROM jian_scores WHERE scores>60
全體代碼:
<?php /* Connect to a MySQL server 銜接數據庫辦事器 */ $link = mysqli_connect( 'localhost', /* The host to connect to 銜接MySQL地址 */ 'jian', /* The user to connect as 銜接MySQL用戶名 */ '123456', /* The password to use 銜接MySQL暗碼 */ 'jian'); /* The default database to query 銜接數據庫稱號*/ if (!$link) { printf("Can't connect to MySQL Server. Errorcode: %s ", mysqli_connect_error()); exit; }else echo '數據庫銜接上了!'. "<br/>"; if ($result = mysqli_query($link, 'SELECT id,class,scores FROM jian_scores WHERE scores>60 ')) { echo('id 班級 分數 '). "<br/>"; /* Fetch the results of the query 前往查詢的成果 */ while( $row = mysqli_fetch_assoc($result) ){ echo $row['id'], " ", $row['class'], " ", $row['scores'], "<br/>"; // printf("%s (%s) ", $row['id'],$row['class'], $row['scores']); } /* Destroy the result set and free the memory used for it 停止查詢釋放內存 */ mysqli_free_result($result); } /* Close the connection 封閉銜接*/ mysqli_close($link); ?>
成果:
感激浏覽,願望能贊助到年夜家,感謝年夜家對本站的支撐!