How to use input type file to define select file field for upload file in HTML

1 Answer

0 votes
<!DOCTYPE html>
<html>
<body>
  
<form action="save.php"> <!-- Note: 404 That page (save.php) doesn't exist -->
  File: <input type="file" name="thefile"><br \><br \>
  <input type="submit">
</form>
  
</body>
</html>

 



answered Jan 2, 2019 by avibootz
edited Jan 3, 2019 by avibootz
...