Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
chamilo-lms/main/survey/exp.php

57 lines
1.4 KiB

<?
//require_once("ui.index.php");
$filename = 'account_history_'.date('mdY').'.csv';
//$strExportList = array(0=>'a',1=>'b',2=>'c');
//$strExportList=$_REQUEST['strExportList'];
//echo "Transaction Date, Particulars, Amount($)";
if($_REQUEST[qtype]=="1"){
$strRows .="Total No. of users attempted this survey =";
$strRows .=$_REQUEST['count_total_user'];
$strRows .="\n";
$strRows .=$_REQUEST['caption'];
$strRows .= ",";
$strRows .= "No. of Votes";
$strRows .= ",";
$strRows .= "Result (%)";
$strRows .="\n";
$strRows .=$_REQUEST['a1'];
$strRows .=",";
$strRows .=$_REQUEST[count_a1];
$strRows .=",";
$strRows .="30%";
$strRows .="\n";
$strRows .=$_REQUEST['a2'];
$strRows .=",";
$strRows .=$_REQUEST[count_a2];
$strRows .=",";
$strRows .="40%";
}
if($strExportList[0])
{
$intCount = 0;
//$strRows='';
foreach($strExportList as $arrRow)
{
$ItemCount = count($strExportList);
$strRows .=strip_tags(str_replace("<BR>"," ", $arrRow[0])).",";
$strRows .=str_pad($arrRow[1],255);
$strRows .=",".str_pad($arrRow[2],12);
$strRows .=",";
$strRows.= "\r\n";
$intCount++;
}
}
// Stream the file, will prompt user to open or save
header("Content-type: application/vnd.ms-excel");
header ("Content-Type: application/octet-stream");
header("Content-disposition: attachment; filename=$filename");
header("Pragma: no-cache");
header("Expires: 0");
echo $strRows;
die();
?>