I try to do a simple upload file and I want to fix the upload directory to upload the file but I’ve tried many ways to do it and I got this error
: failed to open stream.
I’ve tried like this '/html5unchained/imgs/'
and this C:/wamp/www/html5unchained/imgs/
and this C://wamp//www//html5unchained//imgs//
$uploaddir = 'C:\wamp\www\html5unchained\imgs';
$uploadfile = $uploaddir . basename($_FILES['userfile']['name']);
move_uploaded_file($uploadfile, $uploaddir);
i've tried all the posiblities any help please