Help for this page

Select Code to Download


  1. or download this
    <form method='post' action='http:/whatever.com/foo'>
     Address: <input type='text' name='address'>
        ...
     <input type='image' name='whatever' src='url-to-image.jpg' border=0>
    </form>
    
  2. or download this
    <form name='form_name' method='post' action='http:/whatever.com/foo'>
    Address: <input type='text' name='address'>
    ...
    <img src='url-to-image.jpg' onClick='document.form_name.submit()'>
    </form>