我正在尝试将我的数据库中的记录添加到表中作为链接列表,该链接将用户带到他们可以查看的供应商的更多详细信息页面。但是只有第一张唱片被放在桌子上,其余部分在桌子底部的桌子外面出现混乱。
任何人都可以看到我的桌面回声出现了什么问题吗?
<?php
session_start();
$link = mysqli_connect("localhost", "root", "root") or die(mysqli_error($db));
mysqli_select_db($link, "keepers")
or die(mysqli_error($link));
// Check connection
if($link === false)
{
die("ERROR: Could not connect. " . mysqli_connect_error());
}
?>
<html>
<head>
<title>Beekeeper</title>
<meta name="author" content="Nigel Kennington">
<meta name="description" content="Find local honey near you">
<meta name="keywords" content="honey, bees, bee, local">
<link href="bees.css" type="text/css" rel="stylesheet">
</head>
<body>
<div id="linkbar">
<table height="140px" ID="Table1">
<tr>
<td valign="bottom"><a href="index.php">Home</a> |</td>
<td valign="bottom"><a href="about.html">About</a> |</td>
<td valign="bottom"><a href="contact.html">Contact</a></td>
</tr>
</table>
</div>
<div id="bulk">
<table width="100%" border="0" cellpadding="0" cellspacing="0" ID="Table1">
<tr id="spacer">
<td class="leftnav" align="right" valign="top" nowrap width="120px">
<h5>Find Honey from:</h5>
<p><a href="HaL.php">Highlands and Islands</a></p>
<p><a href="NES.php">North Eastern Scotland</a></p>
<p><a href="ES.php">Eastern Scotland</a></p>
<p><a href="SWS.php">South Western Scotland</a>
<h5>List your produce:</h5>
<p><a href="keeperlogin.php">Keepers Page</a></p>
</td>
<td>
<?php
$sql = "SELECT * FROM keepers WHERE area = 'HaI'";
$result = mysqli_query($link, $sql);
echo "<table width=100% border='1'>
<tr>
<th><p class='success'>Shop Name</p></th>
<th><p class='success'>Shop Email</p></th>
<th><p class='success'>Town</p></th>
<th><p class='success'>Phone Number</p></th>
<th><p class='success'>Mobile Number</p></th>
</tr>";
while($row = mysqli_fetch_assoc($result))
{
$id = $row['ID'];
echo "$id";
echo "<tr>";
echo "<td> <a href='viewdetails.php?id=$id'>" . $row['shop_name'] . "</a> </td>";
echo "<td> <a href='viewdetails.php?id=$id'>" . $row['shop_email'] . "</a> </td>";
echo "<td> <a href='viewdetails.php?id=$id'>" . $row['town'] . "</a> </td>";
echo "<td> <a href='viewdetails.php?id=$id'>" . $row['phone_number'] . "</a> </td>";
echo "<td> <a href='viewdetails.php?id=$id'>" . $row['mobile_number'] . "</a> </td>";
echo "</tr>";
echo "</table>";
}
?>
</td>
</tr>
</table>
</div>
<div id="footer">
© 2008 beekeeper.com | <A href="privacy.html">Privacy Policy</A> |
<A href="terms.html">Terms of Use</A>
</div>
</body>
答案 0 :(得分:2)
您正在使用echo "</table>";
将其移出循环....
答案 1 :(得分:1)
将echo "</table>";
从while循环中取出并放在结束括号之后。