2013-11-04 130 views
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>"; 
    }  
?> 
+0

的可能重複的[如何防止克隆相同錶行(http://stackoverflow.com/questions/19766505/how-to-prevent-same-table-row-from-cloning)(也許不重複,但與前一個問題明顯相關。) – CBroe

+0

是相對合法的屬性?你忘了在你的腳本中關閉你的'tr'標籤 –

+1

我假設你知道在'tr'上不允許'rel'? – unor

回答

3

使用echo '<tr rel="'.$id.'">';

echo輸出HTML代碼; <tr[rel=whatever]>是不正確的HTML。

1
$id = $res['name']; 
    echo "<tr rel = '".$id."'>"; 
    echo "<td>".$res['roll']."</td>"; 
    echo "<td>".$res['name']."</td>"; 
    echo "<td>".$res['dept']."</td>";