首頁 資料庫 mysql教程 php mysql連線資料庫執行個體_MySQL

php mysql連線資料庫執行個體_MySQL

Nov 30, 2016 pm 11:59 PM
mysql php

小插曲,晚上把資料的my.ini編碼改為utf-8,然後資料庫一直不能啟動,改回gbk就可以,有知道的告知下問題所在。

因為是連結資料庫,也沒什麼好說明的,直接上程式碼吧。

<&#63;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);
&#63;>

這裡的jian其實是其中一個名字為jian的庫的管理員,不需要寫資料庫管理員,因為實際項目我們可能得到的就是一個庫管理員的資料庫帳號、密碼、還有主機地址。

測試結果:

 原來的資料庫表:

操作1:查詢分數大於60的學生id,班級和分數

SELECT id,class,scores  FROM jian_scores WHERE scores>60

全部程式碼:

<&#63;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);
&#63;>

結果:

感謝閱讀,希望能幫助大家,謝謝大家對本站的支持!

本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn

熱AI工具

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Clothoff.io

Clothoff.io

AI脫衣器

Video Face Swap

Video Face Swap

使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱工具

記事本++7.3.1

記事本++7.3.1

好用且免費的程式碼編輯器

SublimeText3漢化版

SublimeText3漢化版

中文版,非常好用

禪工作室 13.0.1

禪工作室 13.0.1

強大的PHP整合開發環境

Dreamweaver CS6

Dreamweaver CS6

視覺化網頁開發工具

SublimeText3 Mac版

SublimeText3 Mac版

神級程式碼編輯軟體(SublimeText3)

熱門話題

PHP教程
1596
276
如何使用PHP中的陣列 如何使用PHP中的陣列 Aug 20, 2025 pm 07:01 PM

phparrayshandledatAcollectionsefefityIndexedorassociativuctures; hearecreatedWithArray()或[],訪問decessedviakeys,modifybyAssignment,iteratifybyAssign,iteratedwithforeach,andManipulationUsfunsionsFunctionsLikeCountLikeCountLikeCountLikeCountLikecount()

如何在php中使用$ _cookie變量 如何在php中使用$ _cookie變量 Aug 20, 2025 pm 07:00 PM

$_COOKIEisaPHPsuperglobalforaccessingcookiessentbythebrowser;cookiesaresetusingsetcookie()beforeoutput,readvia$_COOKIE['name'],updatedbyresendingwithnewvalues,anddeletedbysettinganexpiredtimestamp,withsecuritybestpracticesincludinghttponly,secureflag

如何與PHP中的日期和時間一起工作 如何與PHP中的日期和時間一起工作 Aug 20, 2025 pm 06:57 PM

UnedateTimeFordateSinphp:createWithNewDateTime(),formatwithformat(),modifyviaadd()ormodify(),settimezoneswithdateTimeZone,and compareusingoperatorSordiff()togetIntervals。

如何更改mySQL中的group_concat分離器 如何更改mySQL中的group_concat分離器 Aug 22, 2025 am 10:58 AM

可以通過在GROUP_CONCAT()函數中使用SEPARATOR關鍵字來自定義分隔符;1.使用SEPARATOR指定自定義分隔符,如SEPARATOR';'可將分隔符改為分號加空格;2.常見示例包括使用管道符'|'、空格''、換行符'\n'或自定義字符串'->'作為分隔符;3.注意分隔符必須為字符串字面量或表達式,且結果長度受group_concat_max_len變量限制,可通過SETSESSIONgroup_concat_max_len=10000;調整;4.SEPARATOR為可選

如何在mysql中使用ifnull()? 如何在mysql中使用ifnull()? Aug 22, 2025 pm 02:00 PM

ifnull()inMysqlreturnsthefirstexpressionFressiviationNotnull,eletherTerntherStheSecondexondsexondsexond,makeitiTIDealForPlacingNullValueswithDefaults; forexample,forexample,ifnull(midder_name,'n/a')顯示了“

PHP中有什麼公共,私人和保護 PHP中有什麼公共,私人和保護 Aug 24, 2025 am 03:29 AM

public成員可被任意訪問;2.private成員僅類內可訪問;3.protected成員可在類及子類中訪問;4.合理使用可提升代碼安全與可維護性。

如何在MySQL中使用類似的操作員 如何在MySQL中使用類似的操作員 Aug 22, 2025 am 12:23 AM

thelikeOperatorInmysqlisusedtosearchforpatternsintextdatausingwildcard; 1.使用%tomatchanySequenceOfCharactersOfCharactersOfCharacterSandTomatchasingle字符; 2.Forexample,'john%'findSnemessTartingwithJohn,'%son'findsnamesendingwithson,'%ar%'findsnamescontaingear,'\ _ \ _ \ _ \ _ \ _

PHP中的依賴注入是什麼 PHP中的依賴注入是什麼 Aug 22, 2025 am 03:13 AM

依賴性inphpimprovesmodularityanditability bighInjectiendIndentienceSexternally.1.itredeDucestightCouplingByByallowingByallowingClasseStorEctorenceDivedencenciesRatherThanCreatingThancreatingThem.2.ConStructororIntoctionPassessesdpassesdpassesdepplassesdependencenciesdependenciesviatheconstructor sensuringavailavailabil,suningiringavailavailabil

See all articles