如何使用php从mysql db中检索pdf和doc文件

时间:2013-08-27 15:53:30

标签: php mysql

我试图检索已成功保存在mysql数据库中的pdf和doc文件,让用户可以访问它。但这就是我得到的userimages/1364700305.30527.pdf。检索文件的代码如下:

<?php
if (isset($_GET['svreg'])) {
    $svreg = $_GET['svreg'];
    $query = "
      SELECT image_file, note_title, note_commt
      FROM notez
      WHERE svreg = '$svreg'
    ";
    $result = mysql_query($query) or die('Error, query failed');
    list($image_file, $note_title, $note_commt) = mysql_fetch_array($result);
}
?>
<a href="veh_over_view.php?svreg=<?=$svreg;?>"><?=$image_file;?></a> <br> 

是的,我在db中有完整的路径。

1 个答案:

答案 0 :(得分:0)

你没有很好地解释你想要什么,所以这就是我理解的你想要的

    <?php
    if (isset($_GET['svreg'])) {

        $svreg = $_GET['svreg'];

        $query = "
          SELECT image_file, note_title, note_commt
          FROM notez
          WHERE svreg = '".$svreg."'
        ";

        $result = mysql_query($query) or die('Error, query failed');

        while(list($image_file, $note_title, $note_commt) = mysql_fetch_array($result)){ ?>

             <a href="veh_over_view.php?svreg=<?=$svreg;?>"><?=$image_file;?></a> <br> 

    <?php }

    }?>