Skip to content

Instantly share code, notes, and snippets.

@rcacciato
Created December 13, 2019 19:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rcacciato/dcea666aea0601ddec5ee6a746c0bd8d to your computer and use it in GitHub Desktop.
Save rcacciato/dcea666aea0601ddec5ee6a746c0bd8d to your computer and use it in GitHub Desktop.
form for menu upload
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>File Upload with PHP</title>
</head>
<body>
<form action="script.php" method="post" enctype="multipart/form-data">
Walter Davis' Script<br><br>Upload a File:
<input type="file" name="menu" id="fileToUpload">
<input type="submit" name="submit" value="Upload File Now" >
</form>
</body>
</html>
@rcacciato
Copy link
Author

This is the upload form.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment