MySQL&PHP學習日誌

來源:互聯網
上載者:User

標籤:

剛剛開始學習MySQL和PHP,在此記錄下學習的點點滴滴,也希望能與大家分享學習到的一些知識。

1.PHP串連MySQL資料庫,通過以下方法可以串連到資料庫(當然,前提是你的相關環境已經搭建完畢)

    $host = "localhost";
    $user = "root";
    $password = "123456";
    $database = "lyz";
    $port = 3306;
    $connection = new mysqli($host, $user, $password, $database, $port);

2.查看串連結果,通過mysqli_connect_errno()函數可以查看返回串連過程是否出現錯誤。

if(mysqli_connect_errno()){
        echo "<p>串連失敗".mysqli_connect_error()."</p>\n";
    } else {
        echo "<p>串連成功</p>\n";
    }

3.執行SQL語句

串連完資料庫,就要對資料庫進行查詢、修改等相關操作了。以下語句是查詢一個資料庫表test。

$result=$connection->query("select* from test");

通過函數fetch_fields()得到表的欄位,直接看代碼

    $num = $result->field_count;
    $info = $result->fetch_fields();
    echo "<p>table name is:".$info[0]->table."</p>";
    for ($i = 0; $i < $num; $i++){
        echo $info[$i]->name."\t";
    }

4.最後,我們就可以輸出表test的內容了

    $rs=$result->fetch_row();
    while ($rs){
        echo "<p>".$rs[0]."\t".$rs[1]."</p>";
        $rs=$result->fetch_row();
    }

    if ($result){
        echo "<p>記錄數:".$result->num_rows."</p>";
        echo "<p>欄位數:".$result->field_count."</p>";
    }
    $result->close();

    5.向表test中插入資料

    $sql = "insert into test(b, a) values(?,?)";
    $stmt = $connection->prepare($sql);
    $bv = 2;
    $av = ‘a‘;
    $stmt->bind_param("is", $bv, $av);
    $stmt->execute();
   
    $stmt->close();


    $connection->close();

 

OK,以上就是對MySQL表test的基本操作——查詢和添加功能。

MySQL&PHP學習日誌

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.