在我的职位门户项目中,我已将求职者数据存储在MySQL数据库中。我已将上传的简历存储在上传文件夹中。我能够通过分页为雇主检索求职者的数据。我想在分页结果中创建每个求职者的下载恢复链接和他的数据。如何在上传文件夹中为简历文件添加下载简历链接,并在分页中添加每个搜索结果?
答案 0 :(得分:2)
如果我理解这个问题,这很容易。由于您在上传文件夹中有简历文件。只需从数据库中选择文件名并存储在一个变量上,例如$filename
,如
$filename = $row['cv_filename']; // supposing $row contains the field of database
然后,在锚点中使用前缀文件夹名称作为该文件的链接。
$prefix = "uploads/resume";
echo "<a href='$prefix/$filename'>Download CV </a>";
答案 1 :(得分:1)
在此处找到解决方案:http://www.ssdtutorials.com/tutorials/title/download-file-with-php.html
由于我要下载的文件与每个求职者的数据动态关联。我使用while循环从数据库中检索文件名。
$result = mysql_query($query);
while($row = mysql_fetch_row($result))
{
$filename = $row[0];
echo "<p><a href='download.php?file=$filename'> Download Resume </a></p>";
}
答案 2 :(得分:0)
header("Content-type: $type");
header("Content-length: $size");
header("Content-Disposition: attachment; filename=$name");
header("Content-Description: PHP Generated Data");
echo $data;
阅读完整示例@ http://onlamp.com/pub/a/php/2000/09/15/php_mysql.html?page=3