by Dina Hess
| Title: | Generating HTML |
| Date: | 06/12/03 10 Posts |
| Summary: | Need to generate clean HTML that is free of extraneous whitespace? Try passing "the value of the buffer in OnRequestEnd" through a cleanup script like the Java version of HTML Tidy. |
| Title: | Paired Values in Lists |
| Date: | 06/12/03 6 Posts |
| Summary: | Trying to store a list in a database field? That should signal the need for another table in your database schema. In this example, a new table is needed to handle the many-to-many relationship between OPTIONS and CAR. A query to join the tables is also provided. |
| Title: | Checkbox Woes |
| Date: | 06/12/03 5 Posts |
| Summary: | Here are a couple of form basics to keep in mind. If METHOD="get," your form variables will be available in the URL scope, not the FORM scope. When working with checkboxes, set the form value to 1 and CFPARAM a default value of 0 at the top of your action page. |