DataTablesにSQLデータを表示する方法は2つあります。1つ目は、ループを使用してhtmlテーブルを作成することです。2番目のオプションは、sAjaxsourceを使用することです。
以下に示すように、最初の解決策でそれぞれの色を変更するの<tr>
は簡単です。
<table>
<thead>
<tr>
<th>id</th>
<th>Customer Number</th>
<th>WCODE</th>
</tr>
</thead>
<tbody>
<?php while ($row = mysql_fetch_array($result)) :?>
<tr style="background-color:<?=$row['COLOR']?>;" >
<td ><?=$row['id']?></td>
<td ><?=$row['customer_number']?></td>
<td ><?=$row['WCODE']?></td>
</tr>
<? endwhile; ?>
</tbody>
</table>
ご覧のとおり、$row['COLOR']は各行の色です。
2番目のオプションsAjaxsourceを使用して同じ結果を達成したいと思います。は<tbody>
空で、各trを制御できません。trはありません。
何か案は?ありがとう。