View cars
Edit cars
Delete cars
Show car List
view_data)){
$table='';
foreach ($this->view_data['cars'] as $car) {
$cars_info = explode(',',$car);
$table.='';
foreach($cars_info as $item){
$table.='| ' . $item . ' | ';
}
$table.='
';
}
$table.='
';
echo $table;
}
?>