I created a form with the possibility to upload a file. I want to use a custom php script for saving the file (image) in a folder.
How can i get the file ? Should i write (if fieldname is image)
$image = $_FILES['image'];
or
$image = $_POST['image'];
or
something else
Thanks in advance
How can i get the file ? Should i write (if fieldname is image)
$image = $_FILES['image'];
or
$image = $_POST['image'];
or
something else
Thanks in advance
This topic is locked and no more replies can be posted.