- 论坛徽章:
- 0
|
真是不好意思,基础没有打牢。版主的方法我使用了,输入excel的数据只在一列内,不能多列显示
我的语句如下,
header("Content-type:application/vnd.ms-excel");
header("Content-Disposition:filename=testxls.xls");
$conn=odbc_connect("kfgl","","$dbpass");
$sql="select name,pass,job,other from users ";
$result_id =odbc_do($conn,$sql);
while (odbc_fetch_row($result_id))
{
for($i=1;$i<5;$i++)
{$findre[$i]=odbc_result($result_id,$i); }
echo"<pre>";
echo "$findre[1]";
echo("\t");
echo "$findre[2]";
echo"\t";
echo "$findre[3]";
echo"\t";
echo "$findre[4]";
echo"\n";
echo"</pre>";
} |
|