Back to July Calendar 

Previous Entry Next Entry→

July 22, 2005
 

To learn about how to deliver OpenGL type animation over the internet, I’ve been looking over the various tutorials available at http://www.w3schools.com/cert/default.asp...actually now, http://www.w3schools.com/html/html_reference.asp  and looking over nitty gritty code elements like the html for tables:
Table Tags

Tag

Description

<table>

Defines a table

<th>

Defines a table header

<tr>

Defines a table row

<td>

Defines a table cell

<caption>

Defines a table caption

<colgroup>

Defines groups of table columns

<col>

Defines the attribute values for one or more columns in a table

<thead>

Defines a table head

<tbody>

Defines a table body

<tfoot>

Defines a table footer


 The section on forms and input is interesting.  For instance, here're some text fields you can enter data into:

Do you suffer from troglodytic tendencies?
Do you identify more with renaissance,
      bourgeois or post modern sensibilities?
Pretty niftomatic, huh?  Try entering username and password:
Username:
Password:
The password is blobbed out, huh? Am I a pro with this stuff?  

Now if you want to actually retrieve information.  Supposedly (presumably)  you do a
<form name="input" action="html_form_action.asp" method="get">,
the user types some characters in the text field, clicks the "Submit" button and input is sent to a page called "html_form_action.asp". That page will show you the received input?   Hmm...  Not sure I could retrieve same, but we'll see.

Username:
I have troglodytic tendencies
I have bourgeois sensibilities
Girls
want to be with the girls
don't want to play like that
just want to talk to the boys
just want to do what is in their hearts
want things that make common sense
are getting into abstract analysis
want to make the intuitive leap
are making plans that have far reaching effects
Boys
Say, "What do you mean?"
There is love
true
false
Yeah, how am I doing? Forms galore!
I am (click all those that apply)
unamerican
antiwar

This example cannot be edited because our editor uses a text area for input, and your browser does not allow a text editing inside a text area.

What ho, the W3 folks strongly advocate using css (cascading style sheets) which I'm already on to, though not nearly enough, given the spotty intermittent style of this very document.

It would be nice to actually gather input this way: real multiple choice tests, etc.

 

 

 

 Another thing to try here is the command action="html_form_action.asp" inside a form.

Male:
Female:

If you click the "Submit" button, you will send your input to a new page called html_form_action.asp.