第一步,開啟Navicat,新資料庫。
第二步,在資料庫中新表。
相關推薦:《Navicat for mysql使用圖文教學》
第三步,儲存表格。
第四步,表中新增資料。
第五步,開啟ide,輸入下列php程式碼,使用localhost開啟該php檔案。
<?php // ip地址、用户名、密码 $con=mysql_connect("localhost","root","123456"); // 判断是否连接成功 if(!$con){ die('数据库连接失败'.mysql_error()); }else{ // 设置编码格式 mysql_query("set name utf8"); // 选择数据库 mysql_select_db("test",$con); // 选择数据表 $result=mysql_query("select * from user"); // 输出表格及th echo "<table border='2' width='300'> <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['userid']."</td>"; // username === 用户名称 与数据表中的username名称对应 echo "<td>".$row['username']."</td>"; // password === 用户密码 与数据表中的密码对应 echo "<td>".$row['password']."</td>"; echo "</tr>"; } echo "</table>"; } // 关闭数据库 mysql_close($con); ?>
瀏覽器中顯示的頁面:
以上是navicat資料庫如何連接php的詳細內容。更多資訊請關注PHP中文網其他相關文章!