9 lines
212 B
PHP
Executable file
9 lines
212 B
PHP
Executable file
|
|
<?
|
|
foreach ($customers as $customer) {
|
|
echo "<li>";
|
|
echo $html->link($customer['Customer']['name'],array('controller'=>'customers', 'action'=>'view',$customer['Customer']['id']));
|
|
echo "</li>";
|
|
}
|
|
?>
|