Tried many things but i can't get it working.
I have a sub directory with the name "pics" and i need to upload images there with my upload.php file.
How can i do this? Here is some of my code where i think i need to add the directory.
if(is_uploaded_file($_FILES['inputfile']['tmp_name'])){
if(!file_exists($_FILES['inputfile']['name'])) {
move_uploaded_file($_FILES['inputfile']['tmp_name'], $_FILES['inputfile']['name']);
}
Thank you very much for your help.