不開放,我有兩個PHP文件
1 List_files - >顯示所有上傳的文件
2. Get_file - >從列出的文件下載文件...下載的文件格式正確
現在,當我下載任何圖像或任何文本文件,並嘗試打開它不會被打開,
錯誤是格式不支持每次。
我的形象.JPEG
我使用Windows Vista,和Firefox。
在下載沒有問題,問題出在打開文件..
get_file.php
<?php
// Make sure an ID was passed
if(isset($_GET['id']))
{
// Get the ID
$id = intval($_GET['id']);
// Make sure the ID is in fact a valid ID
if($id <= 0)
{
die('The ID is invalid!');
}
else
{
// Connect to the database
$con=mysql_connect("localhost","root","");
if(!$con)
{
die('Could Not Connect:'.mysql_error());
}
mysql_select_db("tcs",$con);
// Fetch the file information
$query = "SELECT `mime`, `name`, `size`, `data` FROM `file` WHERE `id` = {$id}";
$result=mysql_query($query,$con);
if($result)
{
$count = mysql_num_rows($result); // Make sure the result is valid
if($count == 1)
{
// Get the row
$row = mysql_fetch_array($result);
// Print headers
header("Content-Type: ".$row['mime']);
header("Content-Length: ".$row['size']);
header("Content-Disposition: attachment; filename=".$row['name']);
// Print data
echo $row['data'];
}
else
{
echo 'Error! No image exists with that ID.';
}
// Free the mysqli resources
//mysql_free_result($result);
}
else
{
echo "Error! Query failed: <pre>".mysql_error()."</pre>";
}
mysql_close();
}
}
else
{
echo 'Error! No ID was passed.';
}
?>
你應該在這裏顯示get_files而不是list_files。 – 2010-01-26 12:30:01
哦,我現在是我soory顯示正確的文件 – 2010-01-26 15:46:21
您是否嘗試用記事本打開文件?它發生在我身上,而所有被保存的內容都是警告和錯誤。 – Dolfa 2010-01-26 12:35:04