I\'m trying to upload a file to my server But the problem is the if(isset($_FILES[\'upl\'])) always returns false
my php:
if($_SERVER[\'REQUEST_METHO
You missed enctype parameter in your from attributes. Its not necessary if you used GET method for file uploading. But if you used POST method for file uploading then, your form parameter should be like this,