所以,我有一个充满信息的数据库,基本上我想要的是我有一个带有一个乐队列表的表,他们有联系信息,家乡城市和联系谁。我想翻页表条目链接到链接到html页面的链接,该页面加载了该数据库条目的完整信息。我知道这听起来很奇怪,我也很难描述它。但是我有一个带有乐队表的封面,它说明了他们的名字,联系方式和家庭城市。我想将乐队的表条目转换为链接到新页面的链接,该页面存储所有数据库信息。例如,数据库有更多细节,如流派,描述,乐队成员等。
<?php
//echo("Hello Retrieving Table");
$bandquery = "SELECT Bands.Name,Bands.City,Bands.Contact,Bands.Primary_Genre FROM Bands";
//echo("Trimming Query");
trim($bandquery);
//echo("Stripping Slashes");
$bandquery = stripslashes($bandquery);
//echo("Setting up Query");
$results = $db->query($bandquery);
if (!$results){
echo("<h2>Error: The query could not be executed.</h2>");
$error = $db->lastErrorMsg();
echo("<p>$error<p>");
exit;
}
echo("<table><tr>");
for($i=0;$i<$num_cols;$i++){
$head = $results->columnName($i);
echo("<th>$head</th>");
}
echo ("</tr>");
// Write rows into table
while ($row = $results->fetchArray(SQLITE3_ASSOC)) {
echo ("<tr>");
foreach($row as $v){ //I want id of the link to be the band id which Idk how to grab those and use this.
echo ("<td><a href="band_detail.php?id=$v">"$v </a></td>");
}
echo ("</tr>");
}
echo ("</table>");
?>