0

多亏了很多帮助,我设法将一张照片上传到服务器,然后写入数据库,但我需要能够上传三个文件,并且每个文件都需要相应地写入数据库。所以目前只有 photo1 被上传和写入,我想为 photo2 和 3 创建另一个表单输入,并让它们也被写入和上传。对不起,我几乎是一个完整的 php 初学者,任何帮助将不胜感激!提前致谢。

<?php


    session_start();

    include_once('../php/connection.php');

    if (isset($_SESSION['logged_in'])) {

        if (isset($_POST['title'], $_POST['content'], $_FILES['photo1'])) {

            $title    = $_POST['title'];
            $content  = nl2br($_POST['content']);
            $name     = $_FILES['photo1']['name'];
            $tmp_name = $_FILES['photo1,']['tmp_name'];

            $target = '../lifestyle/'.$name;

            if (move_uploaded_file($tmp_name, $target)) {

                $stmt = $pdo->prepare('INSERT INTO article (article_title, article_content, photo_1, photo_2) VALUES (?,?,?,?)');
                $stmt->execute(array($title,$content,$name,));
                header('Location: index.php');
                exit();

            }

        }

        ?>



<form action="add.php" method="post" autocomplete="off" enctype="multipart/form-data"/>
    <<input type="text" name="title" id="title"/>
    <textarea name="content"></textarea></dt>
    <input type="file" name="photo1" >
    <input type="submit" id="add article"/>
    </form>
4

1 回答 1

0

使用属性multiple并制作某种名称数组:

<input type="file" name="photo[]" multiple >

或者

<input type="file" name="photo[]">
<input type="file" name="photo[]">
<input type="file" name="photo[]">

http://php.net/manual/en/features.file-upload.multiple.php

于 2013-05-12T18:37:33.780 回答