dtvnbe1428 2014-06-07 06:52
浏览 48
已采纳

NO数据使用PHPExcel库加载到Excel文件中

What I need:

  1. on click of Export Tab Data from Database is loaded in Excel file in format such as csv , xls etc..

My Problem :

  • when Execute file No Data is loaded in Excel File .

here is my code snippet :

  error_reporting(E_ALL);
     ini_set('display_errors', TRUE);
    ini_set('display_startup_errors', TRUE);
    date_default_timezone_set('UTC');

    mysql_connect('localhost','root','') or die('Cannot connect to database !');
    mysql_select_db("atesting_ess") or die('No database found in mysql !');

   if (PHP_SAPI == 'cli')
    die('This example should only be run from a Web Browser');

        /** Include PHPExcel */
     require_once dirname(__FILE__) . '/../Classes/PHPExcel.php';

         // Create your database query
       $query = "SELECT * FROM asana_tasks";  

       // Execute the database query
        $result = mysql_query($query) or die(mysql_error());

       // Instantiate a new PHPExcel object
       $objPHPExcel = new PHPExcel(); 
      // Set the active Excel worksheet to sheet 0
      $objPHPExcel->setActiveSheetIndex(0); 

        $rowCount = 1; 
        while($row = mysql_fetch_array($result)){ 
    //print_r($row);
    $objPHPExcel->setActiveSheetIndex(0)
                ->setCellValue('A'.$rowCount, $row['Projects_name'])
                ->SetCellValue('B'.$rowCount, $row['Name']) 
                 ->SetCellValue('C'.$rowCount, $row['Priority']); 

             $rowCount++; 
           } 
       // Redirect output to a client?s web browser (Excel2007)
     header('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
     header('Content-Disposition: attachment;filename="01simple.xlsx"'); 
     header('Cache-Control: max-age=0');
     // If you're serving to IE 9, then the following may be needed
     header('Cache-Control: max-age=1');

// If you're serving to IE over SSL, then the following may be needed
header ('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); // Date in the past
header ('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); // always modified
header ('Cache-Control: cache, must-revalidate'); // HTTP/1.1
header ('Pragma: public'); // HTTP/1.0
$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007');
$objWriter->save('php://output');
exit;
  1. i have tried t resolve the by adding dummy data its working Fine code:

       // Add some data
         $objPHPExcel->setActiveSheetIndex(0)
        ->setCellValue('A1', 'Hello')
        ->setCellValue('B2', 'world!')
        ->setCellValue('C1', 'Hello')
        ->setCellValue('D2', 'world!');
    
  • 写回答

1条回答 默认 最新

  • douzhuijing4911 2014-06-07 07:16
    关注

    Since column is A,B,C etc. and not 1,2,3, etc. convert it to a character. The code below works for columns A to Z, for AA,AB etc, this needs to be extended.

    $columnvalue = strtoupper(chr($col) + 96));
    $objPHPExcel->getActiveSheet()->setCellValue($columnvalue . $row, $value);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 安卓adb backup备份应用数据失败
  • ¥15 eclipse运行项目时遇到的问题
  • ¥15 关于#c##的问题:最近需要用CAT工具Trados进行一些开发
  • ¥15 南大pa1 小游戏没有界面,并且报了如下错误,尝试过换显卡驱动,但是好像不行
  • ¥15 没有证书,nginx怎么反向代理到只能接受https的公网网站
  • ¥50 成都蓉城足球俱乐部小程序抢票
  • ¥15 yolov7训练自己的数据集
  • ¥15 esp8266与51单片机连接问题(标签-单片机|关键词-串口)(相关搜索:51单片机|单片机|测试代码)
  • ¥15 电力市场出清matlab yalmip kkt 双层优化问题
  • ¥30 ros小车路径规划实现不了,如何解决?(操作系统-ubuntu)