Param('numsondage').' ORDER BY id_users'; $sql = $connect->Prepare($sql); $user_studs = $connect->Execute($sql, array($_GET['numsondage'])); $dsondage = Utils::get_sondage_from_id($_GET['numsondage']); $nbcolonnes=substr_count($dsondage->sujet,',')+1; $toutsujet=explode(",",$dsondage->sujet); //affichage des sujets du sondage $input =","; foreach ($toutsujet as $value) { if ($dsondage->format=="D"||$dsondage->format=="D+") { if (strpos($dsondage->sujet,'@') !== false) { $days=explode("@",$value); $input.= '"'.date("j/n/Y",$days[0]).'",'; } else { $input.= '"'.date("j/n/Y",$values).'",'; } } else { preg_match_all('/\[!\[(.*?)\]\((.*?)\)\]\((.*?)\)/',$value,$md_a_img); // Markdown [![alt](src)](href) preg_match_all('/!\[(.*?)\]\((.*?)\)/',$value,$md_img); // Markdown ![alt](src) preg_match_all('/\[(.*?)\]\((.*?)\)/',$value,$md_a); // Markdown [text](href) if (isset($md_a_img[2][0]) && $md_a_img[2][0]!='' && isset($md_a_img[3][0]) && $md_a_img[3][0]!='') { // [![alt](src)](href) $subject_text = (isset($md_a_img[1][0]) && $md_a_img[1][0]!='') ? stripslashes($md_a_img[1][0]) : _("Choice") .' '.($i+1); } elseif (isset($md_img[2][0]) && $md_img[2][0]!='') { // ![alt](src) $subject_text = (isset($md_img[1][0]) && $md_img[1][0]!='') ? stripslashes($md_img[1][0]) : _("Choice") .' '.($i+1); } elseif (isset($md_a[2][0]) && $md_a[2][0]!='') { // [text](href) $subject_text = (isset($md_a[1][0]) && $md_a[1][0]!='') ? stripslashes($md_a[1][0]) : _("Choice") .' '.($i+1); } else { // text only $subject_text = stripslashes($value); } $input.= '"'.html_entity_decode($subject_text).'",'; } } $input.="\r\n"; if (strpos($dsondage->sujet,'@') !== false) { $input.=","; foreach ($toutsujet as $value) { $heures=explode("@",$value); $input.= '"'.$heures[1].'",'; } $input.="\r\n"; } while ( $data=$user_studs->FetchNextObject(false)) { // Le nom de l'utilisateur $nombase=html_entity_decode(str_replace("°","'",$data->nom)); $input.= '"'.$nombase.'",'; //affichage des resultats $ensemblereponses=$data->reponses; for ($k=0;$k<$nbcolonnes;$k++) { $car=substr($ensemblereponses,$k,1); switch ($car) { case "1": $input .= '"'._('Yes').'",'; $somme[$k]++; break; case "2": $input .= '"'._('Ifneedbe').'",'; break; default: $input .= '"'._('No').'",'; break; } } $input.="\r\n"; } $filesize = strlen( $input ); $filename=$_GET["numsondage"].".csv"; header( 'Content-Type: text/csv; charset=utf-8' ); header( 'Content-Length: '.$filesize ); header( 'Content-Disposition: attachment; filename="'.$filename.'"' ); header( 'Cache-Control: max-age=10' ); echo str_replace('"','""',$input); die();