当通过 PHP 从 MySQL 数据库创建下载链接时,我在获取下载链接时遇到了一些困难。用于获取文件名的代码如下(GET 值用于测试;该值通常来自另一个网页):
$_GET[attachid] = '2597'; //Test value for getting filenames
if(isset($_GET[attachid]) && isset($_GET[UID]))
{
$attachid = $_GET[attachid];
$uid = $_GET[UID];
$sql = "SELECT name, type, size, content FROM requisitions.upload WHERE attachId
='$attachid'";
$res = mysql_query($sql) or die(mysql_error());
list($name, $type, $size, $content) = mysql_fetch_array($res);
header("Content-length: $size");
header("Content-type: $type");
header("Content-Disposition: attachment; filename=$name");
echo $content;
exit; }
?>
接下来是从 MySQL 数据库生成文件名表的代码attachid
:
<?php
$sql = "SELECT UID, attachId, name FROM requisitions.upload WHERE attachId =
'$_GET[attachid]'";
$res6 = mysql_query($sql) or die(mysql_error());
$name = 'name';
$attachid = 'attachId';
$uid = 'UID';
while($row = mysql_fetch_array($res6, MYSQL_ASSOC))
{
?>
<tr>
<td>
<?php echo $row['attachId']; ?>
</td>
<td>
<?php echo "<a href=quotes.php?attachid={$row['attachId']}&uid={$row['UID']}>
{$row['name']}</a></td>";
} </tr></table>
上面生成了一个带有正确attachid
和文件名的表(在这种情况下是三个),并且每个文件名都显示为带有attachid
和uid
附加的链接,但是当我单击链接时,什么也没有发生。我只是返回quotes.php
没有下载。知道我可能做错了什么吗?就像没有读取标题一样。我在 IIS 7 上运行它,如果这有什么不同的话。