0
我目前有一個使用PHP腳本填充的html表格。腳本循環遍歷數據庫中的表格,並將表格中的2個字段的值輸出到表格中的兩個不同單元格中。這兩個不同的值是對大學大廳的回顧,以及留下的人員的姓名評價。在表格單元格中隱藏/顯示更多文本按鈕
某些評論可能很長,因此需要使用更多/更少的按鈕縮短評論時間。我不確定如何創建此按鈕並讓它出現在表格的每個單元格中(因此每個評論都可以展開)。
我知道我沒有解釋得很好,但如果有人知道如何實現這一點,我將非常感激!
編輯:
對不起,我應該把我的代碼放在這裏。
下面是表的HTML代碼和PHP代碼:
<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>
好的問題包含代碼 – 2014-03-24 19:50:22
還要看更多/更少按鈕,您在互聯網上找到了。似乎你想使用JavaScript,但。 –
我很高興使用任何可以工作的方法,不僅Javascript – JoeMorgan