cmc-sales/app/views/elements/info_table.ctp

30 lines
498 B
Plaintext
Raw Permalink Normal View History

2010-05-17 23:45:38 -07:00
<?
/**
* 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>