<table border="0" cellspacing="1" bgcolor="#000000">
<tr bgcolor=white align="center">
<th >Дата</th>
<th >Группа</th>
<th >Время</th>
<th >Название предмета</th>
<th >Преподаватель</th>
<th >Аудитория</th>
<th >Тип</th>
</tr>
<?php
while($test = mysqli_fetch_assoc($result))
{
$setcolor = $test['Type'] == "Add"? "white":"red";
echo 'Type:' . $test['Type'] . ' Setcolor: ' . $setcolor . '<br>';
echo '<tr bgcolor=white align="center">';
echo '<td >' . $test['Date'] . '</td>';
echo '<td >' . $test['User_Group'] . '</td>';
echo '<td >' . $test['Time'] . '</td>';
echo '<td >' . $test['Name_Subject'] . '</td>';
echo '<td >' . $test['Teacher'] . '</td>';
echo '<td >' . $test['Audience'] . '</td>';
echo '<td >' . $test['Type'] . '</td>';
echo '</tr>';
}
?>
</table>