I have a php file that I believe is succeeding and taking two arguments, a file name and a path, and am trying to call it with the following code.
<html>
<body>
<form action="/var/www/upload_file.php foo.php docs/School/" method="post"
enctype="multipart/form-data">
<label for="file">Filename:</label>
<input type="file" name="file" id="file"><br>
<input type="submit" name="submit" value="Submit">
</form>
</body>
</html>
where foo.php and docs/School/ are my two arguments. However, when I click submit, it says:
"The requested URL /var/www/upload_file.php foo.php docs/School/ was not found on this server."
I know this kind of passing works with the exec command in php, but i'm just unsure of formatting for this in html.