sub InitialCall { print <<"HTML"; Notebook

Notebook: Create a new notebook database


In order to create a new database there are a couple of steps to follow. First some basic registration information is needed. Then we will add keyword sets to the database.

Contact Person First Name:
Contact Person Last Name:
Contact Person Email:
Contact Person Telephone:
Administrator Login:
Administrator Password:
Name of Database (for others to see)
One Word name of database (no spaces)
 

Maryland Virtual High School
HTML } sub PrintDefineKeywordSet{ print <<"HTML"; Notebook

Notebook: Define Keyword Set


Now we will begin defining keyword sets for the database. A keyword set is a keyword with an associated list of values. First, define the keyword. Then decide how many values will be associated with the keyword. For example, if the keyword is spices, there may be pepper, oregano, and nutmeg. That would be three possible spices, so put a '3' in the associated values field. You will enter the actual values on the next screen. If the keyword has no values associated with it leave the values field blank.

Keyword:
Number of Associated Values:
 

Maryland Virtual High School
HTML } sub PrintRegistrationSummary{ print <<"HTML"; Notebook Registration Complete!

Registration Complete


The registration process is complete and there is now a form available to use to acces the notebook database. The form is located at http://www.ww.ww.w. If you will be applying your own dynamic application, use the form as a template for the form elements that call the application. For more information on applying Notebook, see the manual.

Now you can begin adding your own questions and instructions. To add questions, you must first login. See the main notebook entry point. Be sure to select the proper database in the pulldown menu.


HTML } sub PrintError{ print <<"HTML"; Notebook Registration: Error Page

There was an error with the form. Please use your browser's back button to fix it: $error

HTML } sub PrintDefineAssociatedValues{ print <<"HTML"; Notebook

Notebook: Define Keyword Values


At this point we have defined a keyword set and it is time to define the values that are associated with the keyword. Below are text entry fields for the amount of values you specified in the last screen. In our spice example, this is where you would add "pepper", "oregano", and "nutmeg". If you have another keyword set to define, select the add another keyword set checkbox.

HTML $i = 1; while ($i <= $values){ print "\n"; print "\n"; print "\n"; $i++; } $i = 0; print <<"HTML";
Keyword: $keyword
\n"; print "Associated Value $i:\n"; print "\n"; print "
\n"; print "
Add another keyword set
 

Maryland Virtual High School
HTML } 1;