Я пытаюсь экспортировать данные из базы данных в Excel, используя php.Но его импорт корректно и файл открывается отлично.Но на некоторых машинах и мобильных устройствах Android он вообще не работает
Показывает ошибку неверного расширения.
Вот код, который я использую
$result = mysqli_query($db, "SELECT Distinct a.*,b.* FROM OrderCalculation a right join crm_order b on a.orderid = b.orderno");
$file_ending = "xls";
//header info for browser
header("Content-Type: application/xls");
header("Content-Disposition: attachment; filename=$filename.xls");
header("Pragma: no-cache");
header("Expires: 0");
/*******Start of Formatting for Excel*******/
//define separator (defines columns in excel & tabs in word)
$sep = "\t"; //tabbed character
//start of printing column names as names of MySQL fields
//for ($i = 0; $i < mysql_num_fields($result); $i++) {
//echo mysqli_fetch_field_direct($result,$i) . "\t";
//}
//print("\n");
//end of printing column names
//start while loop to get data
while($row = mysqli_fetch_array($result))
{
$schema_insert = "";
for($j=0; $j<mysqli_num_fields($result);$j++)
{
if(!isset($row[$j]))
$schema_insert .= "NULL".$sep;
elseif ($row[$j] != "")
$schema_insert .= "$row[$j]".$sep;
else
$schema_insert .= "".$sep;
}
$schema_insert = str_replace($sep."$", "", $schema_insert);
$schema_insert = preg_replace("/\r\n|\n\r|\n|\r/", " ", $schema_insert);
$schema_insert .= "\t";
print(trim($schema_insert));
print "\n";
}
Любая помощьценится.
Спасибо