So i have been working on this for two days now and i am still at a loss, i might the lack of sleep. I went ahead and changed my php.ini to accept post_max_size to 100M, restarted my server and so some reason i am still not getting anything from the var dump. what am I doing wrong. should i not be expecting any files at this point? I just want to see if my file has been uploaded.
<?php
var_dump($_FILES);
?>
<!DOCTYPE html>
<html>
<body>
<form enctype="multipart/form-data" action="" method="post">
<input id="image-file" type="file" />
<input type="submit" name="submit" value="submit">
</form>
</body>
</html>