Как я могу сохранить изображение в определенной папке с помощью PHP и mysql?
я пытаюсь сохранить изображение в папке с картинками .
Notice: Undefined index: img in C:\xampp\htdocs\image\index.php on line 9 Notice: Undefined index: image in C:\xampp\htdocs\image\index.php on line 14
эта ошибка отображается каждый раз.
Что я уже пробовал:
dbconfig.php <?php //all the variables defined here are accessible in all the files that include this one $con= new mysqli('localhost','root','','project') or die("Could not connect to mysql".mysqli_error($con)); mysqli_select_db($con,"image"); ?>
INDEX.PHP
include('dbconfig.php'); if (isset($_POST['submit'])) { $name=$_POST['name']; $img=$_FILES['img']['name']; $result="INSERT into images values('null','$name','$img')"; if (mysqli_query($con, $result)) { move_uploaded_file($_FILES['image']['temp_name'], "picture/$img"); echo "<script> alert('image upload to folder') </script>"; } else { echo "<script> alert('image does not upload to folder') </script>"; } } ?> <html> <head> <title>image upload into folder using php</title> </head> <body> <form action="index.php" method="post" enctype="mutlipart/form-data"> <label>name:</label> <input type="text" name="name"><br><br> <br> <label>select image to upload:</label> <input type="file" name="img"><br> <input type="submit" name="submit" value="upload picture"> </form> </body> </html>