PHP與MySQL交互

WBOY
發布: 2016-08-08 09:29:16
原創
1298 人瀏覽過

PHP與MySQL互動

以一個簡單的實例進行展示,程式碼邏輯為:進行連接、建立一個表格、插入資料、取得資料並顯示結果。

(1):命令列建立test資料庫

(2):以下是php腳本(進行連接、建立一個表格、插入資料、取得資料並顯示結果)

<?php
//连接数据库
$mysqli = new mysqli("localhost", "root", "", "test");

if(mysqli_connect_errno()){
	printf("Connect failed:%\n",mysqli_connect_error());
	exit();
} else {
	//建立表testtable
	$sql="create table testtable(id int not null primary 
         key auto_increment,testField varchar(75))";
	$res=mysqli_query($mysqli, $sql);
	if($res=true){
		echo "Table testtable successfully created.";
		//插入一条记录
		$sql_1="insert into testtable(testField) values
				('some value')";
		$res_1=mysqli_query($mysqli, $sql_1);
		if ($res_1=true) {
			echo "<br/>A record has been inserted.";
			//查询记录
			$sql_2="select * from testtable";
			$res_2=mysqli_query($mysqli, $sql_2);
			if ($res_2){
				//显示记录条数
				$number_of_rows = mysqli_num_rows($res_2);
				printf("<br/>Result set has %d rows.\n",$number_of_rows);
				//获取数据并显示结果
				while ($newArray = mysqli_fetch_array($res_2, MYSQLI_ASSOC)){
					$id = $newArray['id'];
					$testField = $newArray['testField'];
					echo "<br/>The ID is ".$id." and the text is ".$testField."<br/>";
				}
			} else {
				printf("Could not retrieve records:%s\n",mysqli_error($mysqli));
			}
		} else {
			printf("Could not insert record:%s\n",mysqli_error($mysqli));
		}
	} else {
		printf("Could not create table:%s\n",mysqli_error($mysqli));
	}
	
	mysqli_close($mysqli);
}
登入後複製


透過伺服器存取,效果如下:

進入命令列查看資料庫

  • 6PHP與MySQL交互
  • 大小: 20.4 KB
  • PHP與MySQL交互
  • 大小: 145.7 KB
  • PHP與MySQL交互查看圖片附件
  • 以上就介紹了PHP與MySQL交互,包括了方面的內容,希望對PHP教學有興趣的朋友有幫助。
相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!