我遇到的问题只与谷歌浏览器有关,在其他任何地方都运行得很好。
我正在尝试在xls文件中导出查询,但是当我尝试使用Chrome时,我会收到此错误:
Sql错误:您的SQL语法中有错误;检查与您的MySQL服务器版本对应的手册,以便在第1行的“FROM hostess”附近使用正确的语法
我的代码如下:
<?php
$username = $_POST['username'];
$host = '';
$user = '';
$pass = '';
$db = '';
$table = 'hostess';
$file = 'Report_Hostess';
$link = mysql_connect($host, $user, $pass) or die("Can not connect." . mysql_error());
mysql_select_db($db) or die("Can not connect.");
mysql_query("SET NAMES UTF8");
$select = "SELECT ".$username." FROM hostess";
$export = mysql_query ( $select ) or die ( "Sql error : " . mysql_error( ) );
$fields = mysql_num_fields ( $export );
for ( $i = 0; $i < $fields; $i++ )
{
$header .= mysql_field_name( $export , $i ) . "\t";
}
while( $row = mysql_fetch_row( $export ) )
{
$line = '';
foreach( $row as $value )
{
if ( ( !isset( $value ) ) || ( $value == "" ) )
{
$value = "\t";
}
else
{
$value = str_replace( '"' , '""' , $value );
$value = '"' . $value . '"' . "\t";
}
$line .= $value;
}
$data .= trim( $line ) . "\n";
}
$data = str_replace( "\r" , "" , $data );
if ( $data == "" )
{
$data = "\n(0) Records Found!\n";
}
$filename = $file."_".date("Y-m-d_H-i",time());
header("Content-type: application/octet-stream");
header("Content-Disposition: attachment;filename=".$filename.".xls");
header("Pragma: no-cache");
header("Expires: 0");
print "$header\n$data";
exit;
?>
$ username只是一个包含逗号分隔值的字符串,如id,name,surname等,用于构建查询。
你能告诉我为什么我只是使用谷歌浏览器得到这个错误? 感谢
答案 0 :(得分:0)
这是结果:SELECT FROM hostessSql错误:您有错误 在你的SQL语法中;查看与MySQL对应的手册 服务器版本,用于在&#39; FROM hostess&#39;附近使用正确的语法在线 1
select [SOMETHING] FROM hostess
您的$ username设置不当。
$username = $_POST['username'];
你确定要通过邮寄方式发送吗?
建议:做@eggyal建议你做什么......