<table> <thead> <tr> <th>No<th> <th>Name<th> <th>Performance<th> <?php foreach ($ListPerformance as $key2 => $value2) { ?> <tr> <?php foreach ($value2 as $key => $value){ if (!empty($value['date'])){ echo '<th>'.$value['date'].'</th>'; } } ?> ///Next 4 column under date/// <tr> <th>Submit</th> <th>Status</th> <?php if ($_SESSION[AppName]['usergroup'] == 1) { echo '<th>Admin</th>'; } ?> <th>Reset By</th> </tr> <?php } ?> </tr> </thead> </table>
foreach ($ListPerformance as $key2 => $value) { ?> <tr> <?php foreach ($value2 as $key => $value){
value2
$key
$value
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)