urlify($bigtree["module"]["name"])."-".date("Y-m-d").".csv"); header("Pragma: no-cache"); header("Expires: 0"); // Draw the column titles $cols = array(); foreach ($bigtree["report"]["fields"] as $id => $title) { $cols[] = '"'.str_replace('"','""',$title).'"'; } echo implode(",",$cols)."\n"; // Get the results and draw them $results = BigTreeAutoModule::getReportResults($bigtree["report"],$bigtree["view"],$bigtree["form"],$_POST,$_POST["*sort"]["field"],$_POST["*sort"]["order"]); foreach ($results as $r) { $row = array(); foreach ($bigtree["report"]["fields"] as $id => $title) { $row[] = '"'.str_replace('"','""',$r[$id]).'"'; } echo implode(",",$row)."\n"; } die(); ?>