<?php
// 输出Excel文件头,可把user.csv换成你要的文件名
include_once("../includes/global.php");
header("Content-type:application/vnd.ms-excel");
header("Content-Disposition:filename=test.xls");
echo "FirstName\t";
echo "LastName\t";
echo "Prefix\t";
echo "Title\t";
echo "CompanyName\t";
echo "CompanyAddress\t";
echo "Tel\t";
echo "Fax\t";
echo "Email\t";
echo "ColorID\t";
echo "BreakoutSessionsBox\t";
echo "SubscribeBox\t\n";

echo "test1\t";
echo "test2\t";
echo "test2\t";
echo "test2\t";
echo "test2\t";
echo "test2\t";
echo "test2\t";
echo "test2\t";
echo "test2\t";
echo "test2\t";
echo "test2\t";
echo "test2\t";
?>

相关文章:

  • 2022-03-05
  • 2021-10-10
  • 2021-10-22
  • 2021-11-16
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-06-29
  • 2021-06-01
  • 2022-12-23
  • 2022-12-23
  • 2021-08-19
  • 2022-12-23
  • 2021-11-03
相关资源
相似解决方案