我设法将照片上传到服务器然后写入数据库,这要归功于相当多的帮助,但我需要能够上传三个文件,每个文件都需要相应地写入数据库。所以目前只有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>
答案 0 :(得分:0)
使用属性multiple
并制作某种名称数组:
<input type="file" name="photo[]" multiple >
OR
<input type="file" name="photo[]">
<input type="file" name="photo[]">
<input type="file" name="photo[]">