如何将rel属性添加到表的tr中

时间:2013-11-04 11:47:07

标签: php html rel

出于某种原因,我需要将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>";
    }     
?>

2 个答案:

答案 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>";