簡體   English   中英

如何將html表格導出到excel,帶分頁

[英]how to export html table to excel, with pagination

我有一個表單,它以 HTML 表的形式顯示 mysql 數據,使用每頁 5 條記錄的分頁。 我正在嘗試將我的表導出到 excel,但它只導出當前顯示的行的數據,這意味着如果有 20 行,它只顯示前 5 行。 我怎樣才能讓它導出那些沒有被顯示但仍然是搜索的一部分? 我看到其他一些人提出了類似的問題,但都沒有答案( 如何將所有 HTML 表格行從分頁表格導出到 Excel 文件? )。 希望我能得到一個!

<?php
if(isset($_GET['submit']) || isset($_GET['page'])){
    // Setting up the Pagination below

    echo '<center>';
$page_query = "SELECT * FROM tbl_call_log_detail ";
$page_query .= "WHERE
     (dealer_id = '$call_id' AND '$endDate'='1970-01-01' AND '$startDate' ='1970-01-01')
  OR ( Time <= '$endDate' AND Time >= '$startDate'  
                    AND (dealer_id = '$call_id' OR'$call_id'='' ))    
  OR ('$endDate'='1970-01-01' AND '$startDate' ='1970-01-01'  AND '$call_id'='') ";
$page_result = mysqli_query($conn, $page_query);
$total_records = mysqli_num_rows($page_result);
$total_pages = ceil($total_records/$record_per_page);
$start_loop = $page;
$difference = $total_pages - $page;

if($difference <= $total_pages){
    $start_loop = $total_pages - $difference;
}
$end_loop = $start_loop + 2;

if($end_loop > $total_pages){
    $end_loop = $total_pages;
}
if($difference > $total_pages){
    $end_loop = $total_pages;
}
echo '<div class = "center">';
echo '<div class = "pagination">';
if($page > 1){
    echo "<a href= 'dealer_call_log.php?page=1".$urlparameter."'>First</a>";
    echo "<a href= 'dealer_call_log.php?page=".($page - 1).$urlparameter."'> << </a>";
}
for ($i = $start_loop; $i <= $end_loop; $i++){
    echo "<a href= 'dealer_call_log.php?page=".$i.$urlparameter."'>".$i."</a>";
}
if($page < $end_loop){
    echo "<a href= 'dealer_call_log.php?page=".($page + 1).$urlparameter."'> >> </a>";
    echo "<a href= 'dealer_call_log.php?page=".$total_pages.$urlparameter."'>Last</a>";
}
 if($page < 1){
$page = 1;
 }
    echo '</div>'; 
    echo '</div>';

    echo '<br>';

    $sql = "SELECT Name, SFID, Comment, Time FROM tbl_call_log_detail 
    WHERE
     (dealer_id = '$call_id' AND '$endDate'='1970-01-01' AND '$startDate' ='1970-01-01')
  OR ( Time <= '$endDate' AND Time >= '$startDate'  
                    AND (dealer_id = '$call_id' OR'$call_id'='' ))    
  OR ('$endDate'='1970-01-01' AND '$startDate' ='1970-01-01'  AND '$call_id'='')
     ORDER BY Time DESC LIMIT $start_from, $record_per_page ";
    $result = mysqli_query($conn, $sql);
    $row = mysqli_num_rows($result);
    $all_property = array();

    echo "<table class = 'data-table' border = '1' cellpadding = '9' bgcolor = '#CCCCCC' id = 'data-table'>
            <tr class = 'data-heading'>";
    while($property = mysqli_fetch_field($result)){
        echo '<td><b> '. $property ->name. ' </b></td>';
        array_push($all_property, $property ->name);

    }
    echo '</tr>';

    while ($row = mysqli_fetch_array($result)){
        echo '<tr>';
        foreach($all_property as $item){
            echo '<td> '. $row[$item] . ' </td>';
        }
        echo '</tr>';
        echo '</center>';

            }
            echo '</table>';
            echo '<br>';
            ?>

// This is what is getting the current rows, but not all

            <input type = "submit" onclick = "window.open('data:application/vnd.ms-excel, '+encodeURIComponent(document.getElementById('data-table').outerHTML));" value = "Export into excel" />  
            <?php 
}
?>

更新:找到了我正在尋找的答案,我只是運行了一個沒有 LIMIT 子句的新 sql 查詢,並將其存儲在一個隱藏表中。 然后我使用隱藏表導出數據

// SQL and hidden table for exporting to excel 
            $page_query2 = "SELECT * FROM tbl_call_log_detail ";
            $page_query2 .= "WHERE
     (dealer_id = '$call_id' AND '$endDate'='1970-01-01' AND '$startDate' ='1970-01-01')
  OR ( Time <= '$endDate' AND Time >= '$startDate'  
                    AND (dealer_id = '$call_id' OR'$call_id'='' ))    
  OR ('$endDate'='1970-01-01' AND '$startDate' ='1970-01-01'  AND '$call_id'='') ORDER BY TIME DESC ";

  $page_result2 = mysqli_query($conn, $page_query2);
  $row2 = mysqli_num_rows($page_result2);
  $all_property2 = array();

  echo "<table class = 'data-table2' border = '1' cellpadding = '9' bgcolor = '#CCCCCC' id = 'data-table2' hidden>
            <tr class = 'data-heading2'>";
    while($property = mysqli_fetch_field($page_result2)){
        echo '<td><b> '. $property ->name. ' </b></td>';
        array_push($all_property2, $property ->name);

    }
    echo '</tr>';

    while ($row2 = mysqli_fetch_array($page_result2)){
        echo '<tr>';
        foreach($all_property2 as $item){
            echo '<td> '. $row2[$item] . ' </td>';
        }
        echo '</tr>';
        echo '</center>';

            }
            echo '</table>';
            ?>
            <input type = "submit" onclick = "window.open('data:application/vnd.ms-excel, '+encodeURIComponent(document.getElementById('data-table2').outerHTML));" value = "Export into excel" />
            <?php 
}
?>

您可以使用 JQuery table2excel 插件以下是鏈接

http://www.jqueryscript.net/table/Export-Html-Table-To-Excel-Spreadsheet-using-jQuery-table2excel.html

嘗試將代碼筆僅用於 JavaScript

https://codepen.io/kostas-krevatas/pen/mJyBwp

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM