gpt4 book ai didi

php - 为什么我在xampp中的mysql内容无法使用php脚本显示?

转载 作者:行者123 更新时间:2023-11-29 02:31:27 25 4
gpt4 key购买 nike

我在 xampp 中创建了一个数据库,制作了一个非常简单的 php 脚本来访问/连接到 xampp 中的 mysql(将其保存到 xampp/htdocs)。连接没问题,但是当我将它运行到浏览器时,只出现了我在 php 中创建的表,但没有显示 mysql 中的数据。可能是什么问题?

这是PHP代码:

<?php

// Make a MySQL Connection

mysql_connect("localhost", "root", "password") or die(mysql_error());

mysql_select_db("test") or die(mysql_error());

// Get all the data from the "example" table
$result = mysql_query("SELECT * FROM example")
or die(mysql_error());

echo "<table border='1'>";
echo "<tr> <th>Name</th> <th>Age</th> </tr>";
// keeps getting the next row until there are no more to get
while($row = mysql_fetch_array( $result )) {
// Print out the contents of each row into a table
echo "<tr><td>";
echo $row['name'];
echo "</td><td>";
echo $row['age'];
echo "</td></tr>";
}

echo "</table>";
?>

最佳答案

如果您刚开始使用 PHP 和 MySQL 为什么不开始学习 PDO,因为 mysql_* 函数已被弃用。

确保您在example 表中有数据,检查PHPMyAdmin 并遵循this nice guide .

您的代码应该是:

<?php
$db = new PDO('mysql:host=localhost;dbname=test;charset=UTF-8', 'username', 'password', array(PDO::ATTR_EMULATE_PREPARES => false, PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION));

echo "<table border='1'>";
echo "<tr> <th>Name</th> <th>Age</th> </tr>";

$stmt = $db->query("SELECT * FROM example");
while($row = $stmt->fetch(PDO::FETCH_ASSOC)) {
echo "<tr><td>";
echo $row['name'];
echo "</td><td>";
echo $row['age'];
echo "</td></tr>";
}

echo "</table>";
?>

关于php - 为什么我在xampp中的mysql内容无法使用php脚本显示?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12668879/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com