第一步:建立資料庫,在資料庫裡面建立資料表,當然一個資料庫裡面可以有很多資料表,在這裡我就建立一個表格來存學生的個人姓名和成績。
相關mysql影片教學推薦:《mysql教學》
#想法:連結伺服器—>建立資料庫—>連線資料庫—>建立資料表
腳本:建立資料庫與資料表
<?php header("Content-type:text/html;charset=utf-8"); // 创建连接 $conn=mysql_connect('localhost','root','');//三个参数分别对应服务器名,账号,密码 // 检测连接 if (!$conn) { die("连接服务器失败: " . mysql_connect_error());//连接服务器失败退出程序 } // 创建数据库命名为studentinfo $sql_database = "CREATE DATABASE studentinfo"; if (mysql_query($sql_database,$conn)) { echo "数据库创建成功</br>"; } else { echo "数据库创建失败: " . mysql_error()."</br>"; } //连接数据库studentinfo $sele=mysql_select_db( 'studentinfo' ); if(!$sele){ die("连接数据库失败: ".mysql_error());//连接数据库失败退出程序 } // 创建数据表命名为student,主键为id(不为空整型),变量名为name(255位不为空字符串),变量名为chinese(4位不为空整型) // 变量名为english(4位不为空整型),变量名为math(4位不为空整型) $sql_table = "CREATE TABLE student( ". "id INT NOT NULL AUTO_INCREMENT, ". "name CHAR(255) NOT NULL, ". "chinese INT(4) NOT NULL, ". "english INT(4) NOT NULL, ". "math INT(4) NOT NULL, ". "PRIMARY KEY ( id )); "; $retval = mysql_query( $sql_table, $conn ); if(! $retval ){ echo '数据表创建失败: ' . mysql_error()."</br>"; }else{ echo "数据表创建成功</br>"; } mysql_query('set names utf8'); mysql_close($conn);//关闭连接 ?>
現在在phpMyAdmin裡就可以看到新增的資料庫studentinfo和資料表student
第二步:在studentinfo資料庫的student資料表新增學生資訊資料(增)
想法:連接伺服器—>連線資料庫—>到資料表插入指定資料
#注意:因為前面的php已經建立伺服器連接,而且連接資料庫了,所以以下程式碼都省略了建立連接的部分,直接寫函數語句。
function addtabel_data(){ //多维数组 $datas=array( array("name"=>"测试猫","chinese"=>100,"english"=>100,"math"=>100), array("name"=>"测试狗","chinese"=>99,"english"=>99,"math"=>99), array("name"=>"测试虎","chinese"=>98,"english"=>98,"math"=>98) ); for($i=0;$i<count($datas);$i++){ $name=$datas[$i]["name"]; $chinese=$datas[$i]["chinese"]; $english=$datas[$i]["english"]; $math=$datas[$i]["math"]; //多维数组数据逐条插入student表 mysql_query("insert into student(name,chinese,english,math) values ('$name',$chinese,$english,$math)"); } $res=mysql_affected_rows();//返回影响行 if($res>0){ echo "添加数据成功</br>"; }else{ echo "添加数据失败</br>"; } } addtabel_data();//调用
運行php發現新增資料失敗,那是為什麼呢?因為name中傳入了有中文的字串,而student表中定義的name排序規則竟然不是utf-8? ? ?
沒事我們可以一鍵修改排序規則,自行修改好了
再運行,新增資料成功並且發現表中有資料了
第三步:根據查詢條件在studentinfo資料庫的student表裡查詢一或多條指定資訊(查)
想法:連接伺服器—>連接資料庫—>根據條件查詢資料表資料
function selecttable_data($name){ $res=mysql_query("select * from student where name='$name'");//根据name来查询student数据 // $res=mysql_query("select * from student where name='$name' and chinese='$chinese'");//多条件查询连接符and // $res=mysql_query("select * from student");//查询student表里所有数据 // $res=mysql_query("select * from student limit 0,2“);//限制前面第1到2条数据 if($res&&mysql_num_rows($res)){ while($sql=mysql_fetch_assoc($res)){ $arr[]=$sql; } echo json_encode($arr,JSON_UNESCAPED_UNICODE);//把数据(数组嵌套json类型)转换为字符串输出,这个ajax拿数据经常用 }else{ echo "找不到该数据</br>"; } } selecttable_data("测试猫");//查询name为测试猫
第四步:根據修改條件在studentinfo資料庫的student表裡修改指定資料(改)
想法:連接伺服器—>連接資料庫—>根據條件修改資料表指定資料
function updatetabel_data($name,$chinese){ mysql_query("update student set chinese='$chinese' where name='$name'");//修改student表里为$name的chinese数据修改为$chinese $res=mysql_affected_rows();//返回影响行 if($res>0){ echo "修改成功</br>"; }else{ echo "修改失败</br>"; } } updatetabel_data("测试虎",90);//把测试虎的语文成绩修改为90分
測試虎文成績已經從98修改為90
第五步:根據刪除條件在studentinfo資料庫的student表裡刪除指定資料(刪)
想法:連接伺服器—>連接資料庫—>根據條件刪除資料表指定資料
function deletetable_data($name){ mysql_query("delete from student where name='$name'");//删除student表里为$name的整条数据 $res=mysql_affected_rows();//返回影响行 if($res>0){ echo "删除成功</br>"; }else{ echo "删除失败</br>"; } } deletetable_data('测试虎');//删除name为测试虎这条数据
#測試虎這條資料已刪除
##########測試虎這條資料已刪除#########