Home  >  Article  >  Backend Development  >  关于header()

关于header()

WBOY
WBOYOriginal
2016-06-23 14:09:54899browse

header ( "Content-Type:application/vnd.ms-execl" );
header ( "Content-Disposition:filename=test.xls" );
$con_db = mysql_connect("localhost","root","patest");
mysql_select_db("Dataput", $con_db);
$d=0;
for ($i=0;$i {  
$sql="INSERT INTO  Progress (day,city) VALUES ('$d','$i')";
$insertdb_result=mysql_query($sql, $con_db);
echo $i."";
$d++;
}

发现数据中并没有像预想的那样插入6条数据,请高手赐教


回复讨论(解决方案)

不知道你想干什么

实现两个目的:
1、将数据插入db
2、echo ,在页面上显示一些数据

现在在插入数据库时遇到疑问。


或者这么说吧,以上的代码能实现什么效果

页面上不可能有输出了,因为你用了 header ( "Content-Type:application/vnd.ms-execl" );

至于不能插入库中,你可以打开保存的 test.xls 看报什么错误了。

对,页面上没有输出。
但是不是不能插入数据库而是预想的是插入6条,但是插入了12条,有相同的数据重复插入(我主要迷糊的地方)

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn