$val) {
if(is_array($val)) {
$output.= "$name=>(";
foreach($val as $key=>$item) {
if(is_string($key)) {
$key = $key . ':';
}
else $key = "";
$output .= "{$key}$item,";
}
$output = rtrim($output, ',');
$output .= ');;';
}
}
$output =rtrim($output, ';');
echo '%%' .$output;
}
access_process();
access_data() ;
flush();
?>