I upload my files correctly( error code is 0 ) but when i want to move uploaded files using move_uploaded_file : $uploaded=move_uploaded_file($_FILES['image']['tmp_name'],"pics"); the following error occurs: failed to open stream: Permission denied i am using windows so i checked the folder and unsetted read-only but the problem still persists. what should i do?
Is "pics" a file or a directory ? Maybe you want this...
$uploaded=move_uploaded_file($_FILES['image']['tmp_name'], 'pics/' . $_FILES['image']['name']);
thank you. pics was a directory.