cmc-sales/php/app/views/customers/csv.ctp

6 lines
146 B
PHP
Executable file

<?php //debug($customers); ?>
<?php foreach($customers as $cust) {
echo $cust['Customer']['name'].",".$cust['Customer']['abn'].", \r\n";
}
?>