<?php $data = array( array('Title 1'=>'text11', 'Title 2'=>'text12'), array('Title 1'=>'text21', 'Title 2'=>'text22'), array('Title 1'=>'text31', 'Title 2'=>'text32'), array('Title 1'=>'text41', 'Title 2'=>'text42', 'special'=>'style1'), array('Title 1'=>'text51', 'Title 2'=>'text52', 'special'=>'style2'), ); ?> <table> <thead> <tr> <th>Title 1</th> <th>Title 2</th> </tr> </thead> <tbody> <?php foreach ($data as $key=>$row): if (isset($row["special"])) { $class = " class='" . $row["special"]. "'"; unset($row["special"]); } else { $class=''; }?> <tr<?php echo $class ?>> <td><?php echo implode('</td><td>', $row); ?></td> </tr> <?php endforeach; ?> </tbody> </table>
You have javascript disabled. You will not be able to edit any code.