Answers for "button as a upload image html"

PHP
1

image upload form

<form action="upload.php" method="post" enctype="multipart/form-data">
    <label>Select Image File:</label>
    <input type="file" name="image">
    <input type="submit" name="submit" value="Upload">
</form>
Posted by: Guest on April-18-2021
0

upload button in html

<form action="/action_page.php">
  <input type="file" id="myFile" 
  name="filename">
  <input type="submit">
</form>
Posted by: Guest on September-28-2020

Browse Popular Code Answers by Language