Slide 10.4: Oracle9i database design and implementation
Slide 10.6: Calling a CGI script (Unix shell)
Home

How to Construct the Exercise II (Cont.)

  1. Web User Interface Construction [(X)HTML] (X)HTML is short for (eXtensible) HyperText Markup Language, the authoring language used to create documents on the World Wide Web. (X)HTML defines the structure and layout of a web document by using a variety of tags and attributes.

    ~wenchen/public_html/course/351/week10/5.html
    <html>
       ...
     <form method="post" 
       action="http://people.cs.und.edu/~wenchen/cgi-bin/351/week10/ListTitles.cgi">
      Author's name:
      <input type="text"   name="name" value="Michael" size="32"><br />
      <input type="submit" name="act"  value="List the titles">
      <input type="submit" name="act"  value="Display the source">
      <input type="reset"              value="Reset">
     </form>
       ...
    </html>
    http://people.cs.und.edu/~wenchen/course/351/week10/5.html

      Author's name:    

               

    HTML forms are used to select different kinds of user input. A form is an area that can contain form elements. Form elements are elements that allow the user to enter information (like text fields, textarea fields, drop-down menus, radio buttons, checkboxes, etc.) in a form.

    • type="text", which specifies a single line text entry field within the form that contains it.
    • type="submit", which submits the form when a user clicks the button.
    • type="reset", which re-sets all the fields in the form to their initial values when a user clicks the button.