我有一个包含很多列的数据库,我必须创建一个链接来查看更多。
我如何打印当前数据库的示例。
第1行| c1 | c2 | c3 | ...... | c(n-m)| '查看更多'
第2行| c1 | c2 | c3 | ...... | c(n-m)| '查看更多'
这是我的代码:
while($row = $result->fetch_array()){ //creates a loop to loop through results
echo "<tr><td>"; //start a row and cell tag in HTML
for($i=0;$i<12;$i++){ //Creates a loop to print the results
if($i == 1){ //concatenates the names
echo $row[$search_value[$i + 1]] . " " . $row[$search_value[$i + 2]] . " " . $row[$search_value[$i]] . "</td><td>";
$i = $i + 2; //skips the next two since its already printed
} else if($i == 5){ //concatenates the addresses
echo $row[$search_value[$i]] . ", " . $row[$search_value[$i + 1]] . ", " . $row[$search_value[$i + 2]] . "</td><td>";
$i = $i + 2; //skips the next two since its already printed
} else {
echo $row[$search_value[$i]] . "</td><td>"; //prints the specified value and the end and start of a table cell
}
}
echo "<a href='view_more.php' target='_blank'>View More</a>";
echo "</tr></td>"; //ends a row and cell tag in HTML
}
现在我如何实际打印出特定行的其余数据? (当我点击第1行的&#39;查看更多&#39;时,如何显示第1行的其余数据?)
我计划通过链接传递一个唯一值,然后在新页面中再次搜索它并打印它。但是,再次,&#34;我该怎么做?&#34;。