0

ダウンロードリンクを介してMSExcelにエクスポートできるようにしたい列の数が不明な大きなテーブルがあります。私は以前にこれを問題なく行ったことがあります。しかし、それは私が既知の数または列を持っていたときでした。現在、Excelファイルにデータを正常に送信できます。テーブルヘッダーは、テーブルの上部に正しく表示されます。問題はデータにあります。ページ全体のデータを正しい列に配置する代わりに、すべてを最初の列に配置します。これが私のコードの一部です:

while($row = mysql_fetch_row($result))          
{
    // Loops through the results
    for($i=0; $i < $num_cols; $i++)
    {
        // Prints out the data in a table cell
        echo("<Td class='data'>$row[$i]</Td>");
        $FileRecord = Array($row[$i]);
        $exportFile->Export_Record($FileRecord);
    }
}

通常は私が行って$FileRecord = Array($row[0], $row[1], ..., $row[n])おり、すべてがうまく機能していますが、列がいくつあるかわからない場合は、その方法がわかりません。どんな助けでも素晴らしいでしょう!

私はライブラリを使用していません。$exportFile私が使用している関数からです。次のようになります。

class CSV_File {
private $out='';
private $name='';
private $column_names="";
private $count = 0;

//Creates the file name and the header columns
function __Construct($buf, $names) {
    $GLOBALS["name"] = $buf;
    $GLOBALS["column_names"] = ($names."\n");
}

public function Export_Record($array) {
    if (!is_array($array))
        throw new Exception("NOT AN ARRAY");
    for ($i = 0; $i <= count($array); $i++) {
        $GLOBALS["out"] .= $array[$i];

        if ($i < count($array)-1) {
            $GLOBALS["out"] .= ",";
        }
    }
    $GLOBALS["out"] .= "\n";
    $GLOBALS["out"]++;
}

public function ExportButton($align) {
        $output = $GLOBALS["out"];
        $filename = $GLOBALS["name"];
        $columns = $GLOBALS["column_names"];
        if ($align == null)
            $align = "align";
        echo("  <$align><form name=\"export\" action=\"export.php\" method=\"post\">
                <button type=\"submit\" style='border: 0; background: transparent; font-size: 12px;font-weight:bold;'>
                <img src = 'images/icon_csv.png' width = '16' height ='16' alt ='Download Data'> Download</button>
                <input type=\"hidden\" value=\"$columns\" name=\"csv_hdr\">
                <input type=\"hidden\" value=\"$filename\" name=\"fileprefix\">
                <input type=\"hidden\" value=\"$output\" name=\"csv_output\">
                </form></align>");
}
}

そして、export.phpは次のようになります。

if (isset($_POST['csv_hdr'])) 
{
$out .= $_POST['csv_hdr'];
$out .= "\n";
} 

if (isset($_POST['csv_output'])) 
{
$out .= $_POST['csv_output'];
}

if (isset($_POST['fileprefix'])) 
{
$fname .= $_POST['fileprefix'];
}

//Now we're ready to create a file. This method generates a filename based on the current date & time.
$filename = $fname."_".date("Y-m-d_H-i",time());

//Generate the CSV file header
header("Content-type: application/vnd.ms-excel");
header("Content-disposition: csv" . date("Y-m-d") . ".csv");
header("Content-disposition: filename=".$filename.".csv");

//Print the contents of out to the generated file.
print $out;

//Exit the script
exit;' 
4

1 に答える 1

0

それはExcelの表ではありません。これは、たまたま Excel にフィードしている html テーブルです。

あなたの問題は、フェッチしているすべてのレコードに対して新しいテーブル行を開始していないため、すべてが最初の行の新しいセルになることです。

次のようなものが必要です

while($row = mysql_fetch_assoc($result)) {
   echo '<tr>';
   foreach($row as $val) {
      echo "<td>$val</td>";
   }
   echo '</tr>';
}
于 2012-10-09T17:01:38.450 に答える