30 lines
498 B
PHP
30 lines
498 B
PHP
<?
|
|
/**
|
|
* To replace all the weird <dd> <dt> things generated by the cake scaffolding
|
|
*
|
|
* Plain old HTML tables
|
|
*
|
|
* Populated by an array in the format
|
|
*
|
|
* array("title"=>"content",
|
|
* "title1"=>"content1");
|
|
*
|
|
* $data = array("Enquiry Number" => "CMC9742VE252665-42",
|
|
* "Assigned to User" => "Richard");
|
|
*
|
|
*/
|
|
|
|
?>
|
|
|
|
|
|
<table>
|
|
<?php foreach($data as $line) {
|
|
echo "<tr>";
|
|
echo "<td>".key($line)."</td>";
|
|
echo "</tr>";
|
|
}
|
|
|
|
?>
|
|
</table>
|
|
|