dongyu9263 2016-05-11 10:23
浏览 50
已采纳

PHP导出mysql数据到excel表但在浏览器中显示

I am trying to import data from PHP mysql to excel and its working well. but once I click to import button then its display in browser.

header("Content-Disposition: attachment; filename=faculty-export.xls");
header("Content-type: application/vnd-ms-excel; charset=UTF-8;");

I have tested local in my PC (Windows 7, IIS, PHP 5.4) its working fine but when i have upload on web server ( PHP 5.3, Linux, Apache 2.2.3) than export data display in browser (Tested Browser IE 10, 11, Firefox & Chrome).

I am facing problem because we have to change some setting in server or have I do to something in my coding?

Posting the data

 <form method="post" action="export_excel.php">
<input type="hidden" name="excel_name" value="<?php echo $_GET['name']; ?>">
<input type="hidden" name="excel_gender" value="<?php echo $_GET['gender']; ?>">
<input type="hidden" name="excel_college" value="<?php echo $ColName; ?>">
<input type="hidden" name="excel_department" value="<?php echo $_GET['deptf']; ?>">
<input type="hidden" name="excel_nationality" value="<?php echo $_GET['natf']; ?>">
<input type="hidden" name="excel_finalstatus" value="<?php echo $_GET['fstatusf']; ?>">
<input type="hidden" name="excel_fyear" value="<?php echo $_GET['fyearf']; ?>">
  <input style="float:left;" type="submit" value="Save to Excel">
</form>

below code for export_excel.php.

<?php
  error_reporting(0);

  include("connectdb.php"); 
  if (empty($_POST['excel_name']) && empty($_POST['excel_gender']) && empty($_POST['excel_college']) && empty($_POST['excel_department']) && empty($_POST['excel_nationality']) && empty($_POST['excel_finalstatus']) && empty($_POST['excel_fyear']))
{
    /*$query="select * from ab";*/
    $query="select * from ab";

}
 else
    {
         $wheres = array();

          $query = "select * from ab where ";

   if (isset($_POST['excel_name']) and !empty($_POST['excel_name']))
{
    $wheres[] = "name like '%{$_POST['excel_name']}%' ";
} 

if (isset($_POST['excel_gender']) and !empty($_POST['excel_gender']))
{
    $wheres[] = "gender = '{$_POST['excel_gender']}'";
} 

if (isset($_POST['excel_college']) and !empty($_POST['excel_college']))
{
    $wheres[] = "college = '{$_POST['excel_college']}' ";
} 

if (isset($_POST['excel_department']) and !empty($_POST['excel_department']))
{
    $wheres[] = "department = '{$_POST['excel_department']}' ";
} 

if (isset($_POST['excel_nationality']) and !empty($_POST['excel_nationality']))
{
    $wheres[] = "nationality = '{$_POST['excel_nationality']}' ";
} 

if (isset($_POST['excel_finalstatus']) and !empty($_POST['excel_finalstatus']))
{
    $wheres[] = "finalstatus = '{$_POST['excel_finalstatus']}' ";
}

if (isset($_POST['excel_fyear']) and !empty($_POST['excel_fyear']))
{
    $wheres[] = "fyear = '{$_POST['excel_fyear']}' ";
} 

foreach ( $wheres as $where ) 
{
  $query .= $where . ' AND ';   //  you may want to make this an OR
 }
   $query=rtrim($query, "AND "); 

  }

   $result = mysqli_query($conn,$query);

    $xls_filename = 'export_'.date('d-m-Y').'.xls'; // Define Excel (.xls) file name


 header("Pragma: public");
 header("Expires: 0");
 header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
 header("Content-Type: application/force-download");
 header("Content-Type: application/octet-stream");
 header("Content-Type: application/download");;
 header("Content-Disposition: attachment; filename=$xls_filename");
 header("Content-Transfer-Encoding: binary "); 



echo "<table border='1'><tr><th>الإسم</th><th>تاريخ وصول الملف</th><th>الكلية</th><th>القسم</th><th>العمر</th><th>الجنسية</th><th>الجنس</th><th>الدرجة</th><th>نوع التعيين</th><th>السنة</th><th>البكالوريوس<br>سنة التخرج</th><th>الماجستير<br>سنة التخرج</th><th>الدكتوراه<br>سنة التخرج</th><th>الملاحظات</th><th>تاريخ اللجنة</th>";





while($res = mysqli_fetch_assoc($result)){ 
echo "<tr><td>".$res['name']."</td><td>".$res['DOA']."</td><td>".$res['college']."</td><td>".$res['department']."</td><td>".$res['DOB']."</td><td>".$res['nationality']."</td><td>".$res['gender']."</td><td>".$res['fwtype']."</td><td>".$res['finalstatus']."</td><td>".$res['fyear']."</td>";

$query2 = "SELECT * FROM abc where ".$res['id']." = DId";
$result1 = mysqli_query($conn,$query2);

if (mysqli_num_rows($result1) > 0) {
    while($row = mysqli_fetch_assoc($result1)) {
    echo "<td>".$row['DUName']."<br>".$row['DYEAR']."</td>";    
    }
    }
    }
  echo "</tr></tr></table>";


    exit();

 ?>
  • 写回答

2条回答 默认 最新

  • dsu89430 2016-05-17 20:38
    关注

    I didn't found the solution so i use java script and its resolve but anybody have solution for this matter please let me know.

    function fnExcelReport()
     {
    var tab_text="<table border='2px'><tr bgcolor='#87AFC6'>";
    var textRange; var j=0;
    tab = document.getElementById('data'); // id of table
    
    for(j = 0 ; j < tab.rows.length ; j++) 
    {     
        tab_text=tab_text+tab.rows[j].innerHTML+"</tr>";
        //tab_text=tab_text+"</tr>";
    }
    
    tab_text=tab_text+"</table>";
    tab_text= tab_text.replace(/<A[^>]*>|<\/A>/g, "");//remove if u want links in your table
    tab_text= tab_text.replace(/<img[^>]*>/gi,""); // remove if u want images in your table
    tab_text= tab_text.replace(/<input[^>]*>|<\/input>/gi, ""); // reomves input params
    
    var ua = window.navigator.userAgent;
    var msie = ua.indexOf("MSIE "); 
    
    if (msie > 0 || !!navigator.userAgent.match(/Trident.*rv\:11\./))      // If Internet Explorer
    {
        txtArea1.document.open("txt/html","replace");
        txtArea1.document.write(tab_text);
        txtArea1.document.close();
        txtArea1.focus(); 
        sa=txtArea1.document.execCommand("SaveAs",true,"Export.xls");
    }  
    else                 //other browser not tested on IE 11
        sa = window.open('data:application/vnd.ms-excel,' + encodeURIComponent(tab_text));  
    
    return (sa);
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog