I searched all day along and finally found out all I need on USA2017.
/From the "Feedback collection on USA2017.INUMO.RU", USA2017.INUMO.RU./
Forms: Submit buttons. Creat a button. Lesson 18. We can create some buttons for a from using the <input> element. The <input> element has many variations, depending on the type attribute. Type type="submit" defines a submit button (for submitting the form). Click on submit button pass all information to a form-handler. The form-handler is typically a server page with a script for processing input data. The form-handler is specified in the form's action attribute. Type type="reset" defines a reset button (to return default values for the all elements of the form). The <button> element defines a simple clickable button.
<form action="formdata_not_ready!.php" method="POST" name="form1"> <p><label>Name (max 32 chars): <input type="text" name="name1" size="32" maxlength="32" /></label></p> <p><label>Password (max 6 chars): <input type="password" name="pas1" size="10" maxlength="6" /></label></p> <p>Do you love America? ::::: <label>Yes<input type="radio" name="love_america" value="yes" checked="checked" /></label> ... or ... <label>No<input type="radio" name="love_america" value="no" /></label> </p> <p>What states of US do you like?</p> <p> <label><input type="checkbox" name="ny" value="" />New York</label> <label><input type="checkbox" name="florida" value="" checked="checked" />Florida</label> <label><input type="checkbox" name="texas" value="" />Texas</label> </p> <p>What states of US do you like (choice using select)?</p> <p> <select name="states_of_us" size="3" multiple="multiple"> <option value="ny">New York</option> <option value="florida" selected="selected">Florida</option> <option value="texas">Texas</option> </select> </p> <p><label for="message1">Please share your info about USA:</label></p> <p><textarea name="message1" id="message1" cols="72" rows="8">USA is a wonderful country everybody have to visit and to view by own eyes! But only if you have lots of money. The finance system in USA very unbending. The law is very strict. If out of a hundred payments he makes ninety-nine and does not have enough money to make the hundredth payment, the thing he is paying for will be taken away. For the vast majority, property is a fiction. Everything, even the bed on which this desperate optimist and enthusiastic defender of property sleeps, belongs not to him but to the industrial company or to the bank. It is enough for a man to lose his job, and the very next day he begins to understand clearly that he is no kind of proprietor at all...</textarea></p> <p><input type="reset" name="reset" value="Reset..." /><input type="submit" name="submit" value="Submit!"/></p> <p><input type="image" src="images/ibutton.png" name="imageButton" value="Graphic button" /></p> <p><input type="button" name="button" value="Button. Just a button." /></p> </form>
Attention!
Thank you for visit! I wish you great success in present and future!