0

フォームを Excel ファイルにエクスポートするために使用できるコードがありますか? 現在、すべてが正常に機能しており、Excelファイルをダウンロードフォルダーにダウンロードしていますが、問題はi want to store excel file into the localhost Excelfiles folder?

exporttoexcel.php

<?php
header('Content-Type: application/force-download');
header('Content-disposition: attachment; filename=customers.xls');
// Fix for crappy IE bug in download.
header("Pragma: ");
header("Cache-Control: ");
echo $_REQUEST['datatodisplay'];
?>

Test.php

<form action="exporttoexcel.php" method="post" 
onsubmit='$("#datatodisplay").val( $("<div>")
.append( $("#ReportTable").eq(0).clone() ).html() )'>

<table  id="ReportTable"  width="781" border="2">
<tr><td><input type="text" name="test" id="test"></td>
<td><input type="text" name="test2" id="test2"></td>
</table></form>
4

1 に答える 1