December 2002
Intermediate to advanced
745 pages
17h 26m
English
Forms allow a Web site to interact with the user. The user can enter information or make choices. This data can be collected and processed. Processing form data usually involves inserting to or updating a database. Traditionally, the file with the processing instructions was a script file in a CGI/Bin. In our case the processing file is a PL/SQL procedure or PSP page.
For a procedure to be able to process information submitted in a form, the following elements must be in place:
Form fields (where users enter data or make a choice). Each form field must have a name to enable the script to match the name with the value the user enters into the form field. It is recommended that these names ...