0
我需要rel
屬性添加到該表的行出於某種原因的TR。 我做到了這一點,但它不起作用。我應該怎麼做?如何rel屬性添加到表
<?php
$query = $con->prepare("query");
$query->execute();
while($result = $query->fetch(PDO::FETCH_ASSOC)) {
$id = $res['name'];
echo "<tr[rel = '".$id."']>";
echo "<td>".$res['roll']."</td>";
echo "<td>".$res['name']."</td>";
echo "<td>".$res['dept']."</td>";
}
?>
的可能重複的[如何防止克隆相同錶行(http://stackoverflow.com/questions/19766505/how-to-prevent-same-table-row-from-cloning)(也許不重複,但與前一個問題明顯相關。) – CBroe
是相對合法的屬性?你忘了在你的腳本中關閉你的'tr'標籤 –
我假設你知道在'tr'上不允許'rel'? – unor