Fix last bugs

This commit is contained in:
sparkyx 2008-01-22 16:12:24 +00:00
parent 3bb1fad3fe
commit b87e928a2e
24 changed files with 147 additions and 79 deletions

View file

@ -46,14 +46,15 @@ if ( $do == 'po') {
}
/* 2nd Synthese */
if ( $do == 'ga') {
header('Content-type: application/csv');
header('Content-Disposition: attachment;filename="bud_groupe.csv"',FALSE);
require_once ('class_bud_synthese_hypo.php');
$obj=new Bud_Synthese_Hypo($cn);
$obj->from_array($_GET);
$res=$obj->load();
header('Content-type: application/csv');
header('Content-Disposition: attachment;filename="bud_groupe.csv"',FALSE);
echo $obj->display_csv($res);
}