这个问题在这里已经有答案了:
如何在php中获得有用的错误消息(43个答案)
mysqli\u查询需要至少2个参数(5个答案)
两年前关门了。
我试图用php显示数据库中的数据。首先,我要连接到db($db),然后我要尝试选择并计算值的raw。然后我创建表并尝试使用php创建更多的表行,我想使用db中的值在表中生成新行。
<?php
$db = mysqli_connect("myhost", "name", "password", "name");
$result = mysqli_query("SELECT * FROM Orders");
$rowcount = mysqli_num_rows($result);
session_start();
if (!isset($_SESSION['username'])) {
$_SESSION['msg'] = "You must log in first";
header('location: login.php');
}
if (isset($_GET['logout'])) {
session_destroy();
unset($_SESSION['username']);
header("location: login.php");
}
?>
<!DOCTYPE html>
<html>
<head>
<title>Home</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="header">
<h2>Home Page</h2>
</div>
<div class="content">
<!-- notification message -->
<?php if (isset($_SESSION['success'])) : ?>
<div class="error success" >
<h3>
<?php
echo $_SESSION['success'];
unset($_SESSION['success']);
?>
</h3>
</div>
<?php endif ?>
<?php if (isset($_SESSION['username'])) : ?>
<p>Welcome <strong><?php echo $_SESSION['username']; ?></strong></p>
<p> <a href="index.php?logout='1'" style="color: red;">logout</a></p>
<p><a href="prset.php">Profile Settings</a></p>
<?php endif ?>
<!-- logged in user information -->
<table border="1">
<tr>
<td>OrderID</td>
<td>StartAdress</td>
<td>EndAdress</td>
<td>CarrierQuant</td>
<td>Price</td>
<td>Accept</td>
<td>Decline</td>
</tr>
<?php
for($i=1;$i<=$rowcount;$i++ )
{
$row=mysqli_fetch_array($result);
?>
<tr>
<td><?php echo $row['OrderID'] ?></td>
<td><?php echo $row['StartAdress'] ?></td>
<td><?php echo $row['EndAdress'] ?></td>
<td><?php echo $row['CarrierQuant'] ?></td>
<td><?php echo $row['Price'] ?></td>
</tr>
<?php
}
?>
</table>
</div>
</body>
</html>
没有错误,但此代码工作不正常-它没有显示来自数据库的任何数据(但数据库中有许多值)。我想我需要一些帮助来解决这个问题。
1条答案
按热度按时间py49o6xq1#
尝试在mysqli\u查询中传递$db变量作为第一个参数。
就像这样
mysqli_query($db, "SELECT.....");
看看这会把你带到哪里:)有关更多示例和信息,请参见http://php.net/manual/en/mysqli.query.php (在您的案例中,请查看程序样式)