Сообщение от Deff
|
Точно так же, как ты пишешь в ячейку таблицы ? Какая разница ?
Чо в скрипт вставлять в массив соответствия цифр в ячейке коду цвета, чо в стиле прописать чему цифры соответстувуют, какому цвету!
В класс пишешь те же цифры, что и в ячейку, ток желательно с буквой перед ними(Было какое то ограничение в старых браузах)...
Возможно чичас на первую букву уже нет..
|
$html .='<table class="ui fixed single line celled table" style="width: 70%; margin: auto; top: 4%; position: relative; z-index: 1;">';
foreach ($data as $komaxid => $rows) {
$html .= '
<tr>
<th colspan="5" style="text-align: center; font-weight: bold; background: black; color: white; height: 35px;">Komax '.$komaxid.'</th>
</tr>
<tr style="font-weight: bold;">
<th>Operator</th>
<th>XPPS Number</th>
<th>Date start</th>
<th>Date end</th>
<th>GoodParts</th>
</tr>';
sort($rows);
foreach ($rows as $key => $rows2){
$html .='<tr><td>'.$rows2['PersonnelNo'].'</td><td>'.$rows2['PPSNo'].'</td><td>'.$rows2['ActualStartCaoDtZt'].'</td><td>'.($rows2['ActualEndCaoDtZt'] == '1970-01-01 02:00:00' ? '' : $rows2['ActualEndCaoDtZt']).'</td><td>'.$rows2['GoodParts'].'</td><tr>';
}
}
$html .= '</table>';