CSV İhracat script sadece IE'de hata oluşturur?

0 Cevap php

Ben varolan bir veritabanından bilgi çağırır ve CSV formatında aktarır CSV ihracat script (enrdata_arch.php) var. Nedense, ancak script SADECE Internet Explorer'da aşağıdaki hata döndürür:

Microsoft Office Excel cannot access the file 'https://www.domain.com/admin/enrdata_arch.php'. There are several possible reasons:

  • Dosya adı veya yolu yok
  • dosya başka bir program tarafından kullanılıyor
  • kaydetmeye çalıştığınız çalışma kitabı aynı adı olarak şu anda açık çalışma kitabı var

**

The original script is posted below:

**

<?php

$host = 'localhost';
$user = 'username';
$pass = 'password';
$db = 'db_name';
$table = 'table_name';
$archive = 'archive_name';
$file = 'export';

$link = mysql_connect($host, $user, $pass) or die("Can not connect.".mysql_error());
mysql_select_db($db) or die("Can not connect.");

$result = mysql_query("SHOW COLUMNS FROM ".$table."");
$i = 0;
if (mysql_num_rows($result) > 0) {
while ($row = mysql_fetch_assoc($result)) {
$csv_output .= $row['Field'].", ";
$i++;
}
}
$csv_output .= "\n";

$values = mysql_query("SELECT * FROM ".$table."");
while ($rowr = mysql_fetch_row($values)) {
for ($j=0;$j<$i;$j++) {
$csv_output .= '"'.$rowr[$j].'",'; 
}
$csv_output .= "\n";
}

$filename = $file."_".date("Y-m-d",time());
header("Content-type: application/vnd.ms-excel");
header("Content-disposition: csv" . date("Y-m-d") . ".csv");
header( "Content-disposition: filename=".$filename.".csv");
print $csv_output;

//transfers old data to archive
$transfer = mysql_query('INSERT INTO '.$archive.' SELECT * FROM '.$table) or die(mysql_error());

//empties existing table
$query = mysql_query('TRUNCATE TABLE '.$table) or die(mysql_error());

mysql_close($link);
exit;
?>

Komut IE kullanarak yalnızca bir PHP dosyası kaydetmek ve açmak için çalışıyor sanki neredeyse görünüyor. Herhangi bir fikir?

0 Cevap