出于某种原因,我需要将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>";
}
?>
答案 0 :(得分:3)
使用echo '<tr rel="'.$id.'">';
echo
输出HTML代码; <tr[rel=whatever]>
是不正确的HTML。
答案 1 :(得分:1)
$id = $res['name'];
echo "<tr rel = '".$id."'>";
echo "<td>".$res['roll']."</td>";
echo "<td>".$res['name']."</td>";
echo "<td>".$res['dept']."</td>";