Toggle navigation
Genres
Frontend (2)
JavaScript (6)
Database (2)
Linux Server (3)
Web Apps (4)
Misc (4)
Search
List
New Tutorials
Last Modified Tutorials
</>
Code examples
code
smiko
frontend
html
examples
forms
07image_submit.html
07image_submit.html
<!DOCTYPE HTML> <html lang="hr"> <head> <meta charset="UTF-8"> <title>Button</title> </head> <body> <form action="05checkbox_arr_script.php" method="POST" enctype="application/x-www-form-urlencoded"> I want to buy: <br><input type="checkbox" name="fruit[]" value="apples"> APPLES <br><input type="checkbox" name="fruit[]" value="oranges" checked> ORANGES <br><input type="checkbox" name="fruit[]" value="bananas"> BANANAS <br><br> <input type="image" src="./btn.gif"> </form> </body> </html>
Reload page
Preview
W3C validation
Edit Code