<?php $servername = "localhost"; $username = "yosha"; $password = "leon0924"; $dbname = "test"; // 创建连接 $conn = new mysqli($servername, $username, $password, $dbname); // 检测连接 if ($conn->connect_error) { die("连接失败: " . $conn->connect_error); } $sql = "SELECT * FROM student"; $result = $conn->query($sql); if ($result->num_rows > 0) { // 输出每行数据 while ($row = $result->fetch_assoc()) { echo "<br> 学号: " . $row["SID"] . " 姓名: " . $row["Name"] . " 年龄:" . $row["Age"]; } } else { echo "0 个结果"; } $conn->close(); ?>
由于用的是最新版的php,发现教程中的mysql系列函数已经被抛弃了,其实用mysqli系列的函数即可,在配置过气的mysql系列函数上浪费不少时间,最终也没用上。
环境:xmapp集成包(包含apache、mysql等),Netbeans,Chrome,win10
功能:使用php访问mysql输出“localhost"服务器的"test"数据库中"student"表的所有数据中的"SID"、“Name”、“Age”三列
时间: 2024-11-09 01:57:39