我目前有一个使用PHP脚本填充的html表。该脚本循环遍历我的数据库中的一个表,并将2个字段的值输出到表中的两个不同的单元格中,一遍又一遍......两个不同的值是对大学礼堂的评论,以及离开的人的姓名审查。
有些评论可能会很长,因此需要缩短,使用更多/更少的按钮。我不确定如何创建此按钮并使其显示在表格的每个单元格中(因此每个评论都可以展开)。
我知道我没有解释得这么好,但如果有人知道如何实现这一目标,我将非常感激!
编辑:
抱歉,我应该把我的代码放在这里。
下面是表格和PHP代码的HTML代码:
<tr>
<td><table class="flat-table flat-table-1" width="100%">
<tr>
</tr>
<tr style="background-color:#FFF;">
<td class="table-head">Name</td>
<td class="table-head">Rating</td>
</tr>
<?php
//run a query to find all the fields in the hall table that belong to the specific university, using the id in the url ($current_id)
if ($r = $db->prepare("SELECT * FROM reviews WHERE hall_id = :current_id")) {
$r->bindParam(':current_id', $current_id);
$r->execute(); // Execute the prepared query.
//search table for all fields and save them in $hall
$reviewtemp = $r->fetchAll();
foreach( $reviewtemp as $review) {
//loop and output hall names below
?>
<tr>
<td><? echo $review['name'];?></td>
<td><? echo $review['review']; }}?></td>
</tr>
</table>
</td>
</tr>
</table>
需要在“td” -
的底部显示更多/更少的按钮<td><? echo $review['review']; }}?></td>