溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

php7連接MySQL制作簡(jiǎn)易查詢(xún)程序的案例

發(fā)布時(shí)間:2021-03-18 12:55:45 來(lái)源:億速云 閱讀:156 作者:小新 欄目:編程語(yǔ)言

這篇文章主要介紹php7連接MySQL制作簡(jiǎn)易查詢(xún)程序的案例,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

PHP:
config.php 存放數(shù)據(jù)庫(kù)配置信息
cx.php 查詢(xún)程序
index.html 用戶(hù)界面php7連接MySQL制作簡(jiǎn)易查詢(xún)程序的案例
推薦(免費(fèi)):PHP7

結(jié)構(gòu)如圖

MySQL:
表名:data
字段:1.Sid 2.name 3.class
php7連接MySQL制作簡(jiǎn)易查詢(xún)程序的案例
結(jié)構(gòu)如圖

準(zhǔn)備就緒,開(kāi)始吧,現(xiàn)在!
首先構(gòu)建用戶(hù)界面(index.html),兩個(gè)簡(jiǎn)單的編輯框加上一個(gè)簡(jiǎn)單的按鈕:

<!DOCTYPE html><html lang="cn"><head>
    <meta charset="UTF-8">
    <title>分班查詢(xún)系統(tǒng)</title></head><body><form action="cx.php" method="post">
    <p>學(xué)號(hào):<input type="text" name="xuehao"></p>
    <p>姓名: <input type="text" name="xingming"></p>
    <p><input type="submit" name="submit" value="查詢(xún)"></p></form></body></html>

好嘞,接下來(lái)配置數(shù)據(jù)庫(kù)信息(config.php)吧

<?php$server="localhost";//主機(jī)的IP地址$db_username="root";//數(shù)據(jù)庫(kù)用戶(hù)名$db_password="123456";//數(shù)據(jù)庫(kù)密碼$db_name = "data";

然后去編寫(xiě)我們的主程序(cx.php)

<?phpheader("Content-Type: text/html; charset=utf8");if(!isset($_POST["submit"])){
    exit("未檢測(cè)到表單提交");}//檢測(cè)是否有submit操作include ("config.php");$Sid = $_POST['Sid'];//post獲得學(xué)號(hào)表單值$name = $_POST['name'];//post獲得姓名表單值echo "<table style='border: solid 1px black;'>";echo "<tr><th>學(xué)號(hào)</th><th>姓名</th><th>班級(jí)</th></tr>";class TableRows extends RecursiveIteratorIterator{
    function __construct($it)
    {
        parent::__construct($it, self::LEAVES_ONLY);
    }

    function current()
    {
        return "<td style='width:150px;border:1px solid black;'>" . 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();

    // 設(shè)置結(jié)果集為關(guān)聯(lián)數(shù)組
    $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 "</table>";

到此程序就寫(xiě)完啦
來(lái)試試看吧
php7連接MySQL制作簡(jiǎn)易查詢(xún)程序的案例php7連接MySQL制作簡(jiǎn)易查詢(xún)程序的案例

以上是“php7連接MySQL制作簡(jiǎn)易查詢(xún)程序的案例”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI