php - 根据文件扩展名和带超链接的文件数显示从 MySQL 上传的文件

标签 php mysql sql mysqli file-upload

我正在尝试将以前上传的文件加载到 MySQL 数据库中。提交表单时文件存储在文件夹中,预览页面将包含指向这些文件的超链接(类似于附件)

我遇到的问题是:

  • 如果我只选择 1 个或多个具有特定文件扩展名的文件进行上传,那么我将列出正确数量的文件,并且超链接将起作用。
  • 如果我选择具有 2 个不同文件扩展名(PDF 和 JPG)的 2 个文件,则会显示 4 个超链接。
  • 如果我选择 4 个具有 2 个不同文件扩展名(PDF 和 JPG)的文件,我将显示 8 个超链接

可能错误是我代码中的 foreach 命令。

请查看附件中加载文件后的样子。

preview of results

索引.php

<?php
include('dbconfig.php');

date_default_timezone_set('Europe/Oslo');
$loaddate1 = date('Y-m-d');
$loadtime1 = date('H-i-s');
?>

<form name="myForm" id="myForm" class="workshop add" action="" method="post" enctype="multipart/form-data">
<input id="" type="text" name="toolsn" value="">
<input id="" type="text" name="actioninsertdate" value="<?php echo $loaddate1;?>" readonly> <br/>
<input id="" type="text" name="actioninserttime" value="<?php echo $loadtime1;?>" readonly><br/>
<input type="file" name="files[]" multiple/><br/>
<button type="submit" name="submit">Submit</button></div>
</form>



<?php


if(isset($_POST['submit']))
{
$path = 'images/';
$toolsn = $_POST['toolsn'];
$actioninsertdate = $_POST['actioninsertdate'];
$actioninserttime = $_POST['actioninserttime'];
$errors= array();
foreach($_FILES['files']['tmp_name'] as $key => $tmp_name ){
    $file_name = $key.$_FILES['files']['name'][$key];
    $file_basename = substr($file_name, 0, strripos($file_name, '.')); // get file extension
    $file_ext = substr($file_name, strripos($file_name, '.')); // get file name
    $file_size =$_FILES['files']['size'][$key];
    $file_tmp =$_FILES['files']['tmp_name'][$key];
    $file_type=$_FILES['files']['type'][$key];
    $newfilename = $toolsn.'-'.$loaddate1.'_'.$loadtime1.'_'.rand(1,20).$file_ext;
    if($file_size > 2097152){
        $errors[]='File size must be less than 2 MB';
    }

    $query="INSERT workshop1 SET toolsn='$toolsn',file='$newfilename',type='$file_type',size='$file_size',actioninsertdate='$actioninsertdate',actioninserttime = '$actioninserttime'"
    or die(mysqli_error ($connection));
    if(empty($errors)==true || empty($toolsn)==false){
        if(is_dir($path.$toolsn)==false){
            mkdir("images/$toolsn", 0700);      // Create directory if it does not exist
        }
        if(is_dir("images/$toolsn/".$file_name)==false){
            //$newfilename = $toolsn.'-'.$loaddate1.'_'.$loadtime1.'_'.rand(1,4).$file_ext;
            move_uploaded_file($file_tmp,"images/$toolsn/".$newfilename);
        }else{                                  // rename the file if another one exist
            //$newfilename = $toolsn.'-'.$loaddate1.'_'.$loadtime1.'_'.rand(1,4);
            $new_dir="images/$toolsn/".time().$newfilename;
             rename($file_tmp,$new_dir) ;
        }
     mysqli_query($connection, $query);
    }else{
            print_r($errors);
    }
}

}
?>

read.php

<?php
include('dbconfig.php');
$sqls=mysqli_query($connection, "
SELECT
GROUP_CONCAT(DISTINCT toolsn SEPARATOR '<br />') as toolsn,
GROUP_CONCAT(DISTINCT type SEPARATOR '<br />') as type,
GROUP_CONCAT(DISTINCT file ORDER BY type SEPARATOR '<br />') as file,
GROUP_CONCAT(DISTINCT actioninsertdate SEPARATOR '<br />') as actioninsertdate,
GROUP_CONCAT(DISTINCT actioninserttime SEPARATOR '<br />') as actioninserttime
from workshop1
group by actioninserttime");

//get feedback why database not working
if (!$sqls) {
printf("Error: %s\n", mysqli_error($connection));
exit();
}
?>

<table id="table" class="table table-hover table-responsive">
<thead class="thead-default">
    <tr>
    <th>Toolsn</th>
    <th>Date added</th>
    <th>Time added</th>
    <th>Attachment</th>
    </tr>
</thead>
<?php
echo '<tbody id="tbody"><tr>';
while ($row = mysqli_fetch_array($sqls)) {
   echo '<td>'.$row['toolsn'].'</td>';
   echo '<td>'.$row['actioninsertdate'].'</td>';
   echo '<td>'.$row['actioninserttime'].'</td>';

echo '<td>';
$eachtoolsn=explode('<br />',$row['toolsn']);
$eachfile=explode('<br />',$row['file']);
$eachtype=explode('<br />',$row['type']);

foreach($eachfile as $listfile) {
//echo $listfile;

    foreach($eachtoolsn as $key => $listoolsn) {
    //echo [$key];
    }

    foreach($eachtype as $listtype) {
        if ($listtype === 'image/jpeg'){
            echo '<a href="images/'.$row['toolsn'].'/'.$listfile.'" target="_blank"><img src="images/'.$row['toolsn'].'/'.$listfile.'" width="48" height="48"></a>';
        } elseif ($listtype === 'application/pdf'){
            echo '<a href="images/'.$row['toolsn'].'/'.$listfile.'" target="_blank"><img src="images/icon-pdf.png" width="48" height="48"></a>';
        }
    }

echo '</td>';
echo '</tr>';}
echo '</tbody></table>';
?>

最佳答案

你的逻辑不好:

<?php
foreach($eachfile as $listfile) {
    foreach($eachtype as $listtype) { // <= your bug is here
        if ($listtype === 'image/jpeg'){
            echo '<a href="images/'.$row['toolsn'].'/'.$listfile.'" target="_blank"><img src="images/'.$row['toolsn'].'/'.$listfile.'" width="48" height="48"></a>';
        } elseif ($listtype === 'application/pdf'){
            echo '<a href="images/'.$row['toolsn'].'/'.$listfile.'" target="_blank"><img src="images/icon-pdf.png" width="48" height="48"></a>';
        }
    }
}

这是新版本:

<?php
foreach($eachfile as $key => $listfile) {
    if ($eachtype[$key] === 'image/jpeg')
        echo '<a href="images/'.$row['toolsn'].'/'.$listfile
        .'" target="_blank"><img src="images/'.$row['toolsn']
        .'/'.$listfile.'" width="48" height="48"></a>';
    elseif ($eachtype[$key] === 'application/pdf')
        echo '<a href="images/'.$row['toolsn'].'/'.$listfile
        .'" target="_blank"><img src="images/icon-pdf.png" '
        .'width="48" height="48"></a>';
}

$key 是您使用 explode() 创建的数组中行的索引

$eachfile = array(
    0=>'file1',
    1=>'file2',
)

$eachtype = array(
    0=>'PDF',
    1=>'JPG',
)

所以你只需使用你的文件的键来获取类型的好行。

关于php - 根据文件扩展名和带超链接的文件数显示从 MySQL 上传的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46629975/

相关文章:

sql - SQL函数是否应该大写有 'official'约定吗?

PHP - 创建函数问题

php - 将 mysql 检索到的数据拆分为标题和行

c# - ASP.NET MVC5 不会创建 MySQL 数据库,除非在初始化程序处中断

php - Fullcalendar MySQL 插入不起作用

php - 当您知道 id 时,Laravel 从 View 中的其他表中获取数据

c# - 更新查询无法识别其运行的表的字段

php - 检查更新查询是否成功[PHP, mysqli]

使用 javascript/AJAX 的 PHP Cronjobs

c# - NullReferenceException 试图读取连接字符串