我在SQL Server数据库中有两个表。一个名为matrix的表具有要在Web表中显示的所有值,而另一个表矩阵 - 下拉列表具有具有下拉列表的单元格的值。我想为网络表格中的下拉列表的单元格值设置不同的背景颜色,例如q1,然后是绿色,如果是q2,黄色。我无法弄清楚在哪里创建一个函数来比较单元格值并相应地返回背景颜色。代码段如下所示:
<?php
require_once('include/database.php');
?>
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<section>
<table id="myTable" class="tablesorter">
<thead>
<tr>
<th>Capacity</th>
<th>Ownership</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<?php
$stmt = $conn->prepare("SELECT * FROM MATRIX ORDER BY OBJECTID ASC");
$stmt ->execute();
$result = $stmt->fetchAll();
foreach($result as $row) {
?>
<tr>
<td><?=$row['Ownership'];?></td>
<td><?=$row['Capacity'];?></td>
<td><a href="edit.php?id=<?=$row['OBJECTID'];?>">Edit </a> </td>
</tr>
</tbody>
<?php
}
?>