我花了一整天的时间试图让这个代码片段工作:
<?php
include("conn.php");
$result = mysql_query("SELECT * FROM users");
echo "<table border=\"0\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" id=\"product- table\">
<tr>
<th class=\"table-header-check\"><a id=\"toggle-all\" ></a> </th>
<th class=\"table-header-repeat line-left\" ><a href=\"\">User ID</a></th>
<th class=\"table-header-repeat line-left\"><a href=\"\"> Username</a></th>
<th class=\"table-header-repeat line-left\"><a href=\"\">Firstname</a></th>
<th class=\"table-header-repeat line-left\"><a href=\"\">Lastname</a></th>
<th class=\"table-header-repeat line-left\"><a href=\"\">Email</a></th>
<th class=\"table-header-repeat line-left\"><a href=\"\">Registration Date</a></th>
<th class=\"table-header-options line-left\"><a href=\"\">Options</a></th>
</tr>";
while ($row = mysql_fetch_array($result)) {
echo "<tr>";
echo "<td>"."<input type=\"checkbox\"/></td>";
echo "<td>" . $row['user_id'] . "</td> ";
echo "<td>" . $row['username'] . "</td>";
echo "<td>" . $row['first_name'] . "</td>";
echo "<td>" . $row['last_name'] . "</td>";
echo "<td>" . $row['email'] . "</td>";
echo "<td>" . $row['registration_date'] . "</td>";
echo "<td class=\"options-width\">".
"<a href=\"\" title=\"Edit\" class=\"icon-1 info-tooltip\"> </a>".
"><a href="delete.php?id=' . $row['id'] . '"class=\"icon-2 info-tooltip\"></a>".
"<a href=\"\" title=\"Save\" class=\"icon-5**strong text**info-tooltip\"> </a>".
"
</td>";
echo "</tr>";
}
?>
我想要做的是将我的用户拉到一个 html 表中,然后制作它,以便我可以从 url 字符串 ex 中编辑/删除它们。