Logo  

CS479/579 - Web Programming II

Displaying ./code/Uploads/upload.html

<!DOCTYPE html>
<html>
<head>
 <title> File uploader </title>
</head>
<body>
<h1> Upload file </h1>

<form action='upload.php' method='post' enctype='multipart/form-data'>
 <table>
  <tr><td> File: <td> <input type='file' name='upfile'>
  <tr><td> <td> <input type='submit'>
 </table>
</form>

</body>
</html>