首頁 > 資料庫 > navicat > navicat資料庫如何連接php

navicat資料庫如何連接php

爱喝马黛茶的安东尼
發布: 2019-08-12 14:39:41
原創
6108 人瀏覽過

navicat資料庫如何連接php

第一步,開啟Navicat,新資料庫。

navicat資料庫如何連接php

第二步,在資料庫中新表。

navicat資料庫如何連接php

相關推薦:《Navicat for mysql使用圖文教學

 第三步,儲存表格。

navicat資料庫如何連接php

 第四步,表中新增資料。

navicat資料庫如何連接php

 第五步,開啟ide,輸入下列php程式碼,使用localhost開啟該php檔案。

<?php
 
    // ip地址、用户名、密码
    $con=mysql_connect("localhost","root","123456");
 
    // 判断是否连接成功
    if(!$con){
        die(&#39;数据库连接失败&#39;.mysql_error());
    }else{
        // 设置编码格式
        mysql_query("set name utf8");
 
        // 选择数据库
        mysql_select_db("test",$con);
 
        // 选择数据表
        $result=mysql_query("select * from user");
 
        // 输出表格及th
        echo "<table border=&#39;2&#39; width=&#39;300&#39;>
                <tr>
                <th>id</th><th>name</th>
                <th>password</th>
                </tr>";
 
        // 遍历数据表中的内容
        while($row=mysql_fetch_array($result)){
            echo "<tr>";
            // userid === 用户id 与数据表中的id名称对应
            echo "<td>".$row[&#39;userid&#39;]."</td>";
            // username === 用户名称 与数据表中的username名称对应
            echo "<td>".$row[&#39;username&#39;]."</td>";
            // password === 用户密码 与数据表中的密码对应
            echo "<td>".$row[&#39;password&#39;]."</td>";
            echo "</tr>";
        }
        echo "</table>";
    }
    // 关闭数据库
    mysql_close($con);
 
?>
登入後複製

瀏覽器中顯示的頁面:

navicat資料庫如何連接php

以上是navicat資料庫如何連接php的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板