簡易教程
假設我們製作的是分班情況查詢程序,將使用PHP7的環境以PDO的方式連接MySQL。
透過學號和姓名查詢自己班級。
推薦(免費):PHP7
先介紹檔案結構與資料庫結構:
PHP:
config.php 存放資料庫設定資訊
cx.php 查詢程式
index.html 使用者介面
結構如圖
##MySQL: 表名:data
欄位:1.Sid 2.name 3.class
結構如圖
準備就緒,開始吧,現在! 先建立使用者介面(index.html),兩個簡單的編輯框加上一個簡單的按鈕:
nbsp;html> <meta> <title>分班查询系统</title>
<?php $server="localhost";//主机的IP地址$db_username="root";//数据库用户名$db_password="123456";//数据库密码$db_name = "data";
<?phpheader ("Content-Type: text/html; charset=utf8");if(!isset($_POST["submit"])){ exit("未检测到表单提交");}//检测是否有submit操作include ("config.php");$Sid = $_POST['Sid'];//post获得学号表单值$name = $_POST['name'];//post获得姓名表单值echo "<table style='border: solid 1px black;'>";echo "<tr> <th>学号</th> <th>姓名</th> <th>班级</th> </tr>";class TableRows extends RecursiveIteratorIterator{ function __construct($it) { parent::__construct($it, self::LEAVES_ONLY); } function current() { return "<td>" . parent::current() . "</td>"; } function beginChildren() { echo "<tr>"; } function endChildren() { echo "</tr>" . "\n"; }}try { $conn = new PDO("mysql:host=$server;dbname=$db_name", $db_username, $db_password); $conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); $stmt = $conn->prepare("SELECT Sid, name, class FROM data where Sid=$Sid and name='$name'"); $stmt->execute(); // 设置结果集为关联数组 $result = $stmt->setFetchMode(PDO::FETCH_ASSOC); foreach (new TableRows(new RecursiveArrayIterator($stmt->fetchAll())) as $k => $v) { echo $v; }} catch (PDOException $e) { echo "Error: " . $e->getMessage();}$conn = null;echo "";
來試試看吧
以上是學習php7連接MySQL製作簡易查詢程序的詳細內容。更多資訊請關注PHP中文網其他相關文章!