简单的一个,我的 sql 数据没有显示在使用 php 的网页上时遇到了困难。我有一个单独的页面,它按照连接到数据库。然而,使用简单的连接 php 脚本不会显示结果......
<?php
include("header.php");
include("connect.php");
?>
<?php
$sql = mysqli_query("SELECT * FROM members ORDER BY id ASC");
$id = 'id';
$username = 'username';
$useremail = 'useremail';
$rows = mysqli_fetch_assoc($sql);
echo 'Name: ' . $rows[$id] . '<br />' . 'Username: ' . $rows[$useremail];
?>
我什至试过这个,但仍然没有......
<?php
include 'includes/connect.php';
$query = "SELECT * FROM members";
$result = mysqli_query ($query);
while($person = mysqli_fetch_array($result)) {
echo "<h1>" . $person['useremail'] . "</h1>";
}
?>