
Tell A Friend
+Share the Mackinac Island Experience Package with a friend!
+From: Steve Sutton Share the Mackinac Island Experience Package with a friend!
+
Tell A Friend
+
+
+
+footer();
+?>
diff --git a/admin/Contact/contact_setup.inc b/admin/Contact/contact_setup.inc
new file mode 100644
index 0000000..6da7dcd
--- /dev/null
+++ b/admin/Contact/contact_setup.inc
@@ -0,0 +1,259 @@
+
+//$Id: contact_setup.inc,v 1.1.1.1 2007/04/19 13:06:15 matrix Exp $
+if(!defined("ENTRIES_PER_PAGE"))
+ {
+ define("ENTRIES_PER_PAGE",10); // Entries per Page in list_contact.phtml
+ }
+define("CUSTOMER_TABLE","customer"); // name of customer table
+define("CONTACT_TABLE","contact"); // name of contact table
+define("TABLE",CONTACT_TABLE); // which table to use
+define("DATEFORMAT","US"); // date format (for edit_contact.phmtl)
+define("NEWSLETTER_PROTOTYPE","newsletter_template.html"); // date format (for edit_contact.phmtl)
+include_once(BASE.'classes/class_template.inc');
+$DB =& new GLM_DB();
+/*
+ setup the following in the setup.phtml (in root directory) file.
+defines:
+HTML_EMAIL = ON or OFF
+PRODUCTION_MODE = ON ,r OFF
+ */
+if(!defined("HTML_EMAIL"))
+ {
+ define("HTML_EMAIL","ON");
+ }
+if(!defined("PRODUCTION_MODE"))
+ {
+ define("PRODUCTION_MODE","ON");
+ }
+if(!defined("NEWSLETTER"))
+ {
+ define("NEWSLETTER",1); //bool- does the contact database mail out a newsletter?
+ }
+
+if(!function_exists("template_read"))
+ {
+ function template_read($template)
+ {
+ $fp = fopen($template, "r");
+ $contents = fread($fp,filesize($template));
+ fclose($fp);
+ if($contents)
+ {
+ return $contents;
+ }
+ else
+ {
+ return "";
+ }
+ }
+ }
+
+if(!function_exists("explode_template"))
+ {
+ function explode_template($template,$data)
+ {
+ $template = template_read($template);
+ $output = template_replacement($template,$data);
+ $output = wordwrap($output, 72);
+ return($output);
+
+ }
+ }
+
+if(!function_exists("template_replacement"))
+ {
+ function template_replacement($template,$fieldarr)
+ {
+ if(is_array($fieldarr))
+ {
+ foreach($fieldarr as $key=>$value)
+ {
+ $template = str_replace( "", $value, $template );
+ }
+ }
+
+ return $template;
+ }
+ }
+if(!function_exists("add_image"))
+ {
+ function add_image($image,$align)
+ {
+ if($image != "")
+ {
+ return('
+
+
+
+
+ 0)
+{
+ for($i=0;$i
+
+
+ }
+}
+else {
+ ?>
+ [Edit]
+
+
+ $qs = "SELECT MAX(pos) as maxpos
+ FROM contact_inq";
+
+ $maxresult = pg_exec($conn,$qs);
+ $max_data = pg_fetch_array($maxresult,0,PGSQL_ASSOC);
+ $maxpos = $max_data['maxpos'];
+ $pos = "
+
+
+
+}
+?>
+Nothing in the database yet
";
+ }
+
+// default query on create_date
+$c_date_from = contact_date_entry("","","","fc_month","fc_day","fc_year");
+$c_date_to = contact_date_entry("","","","tc_month","tc_day","tc_year");
+/* The following is for setting up the defines and arrays that are needed
+ * based on which table ( customer or contact ) in use
+ * formats for arrays
+ * $DB_fields[] = array( name =>"{FIELD NAME}", title => "{FIELD TITLE}", type => "{FIELD TYPE}")
+ * $fields["{FIELD_NAME}"] = "{FIELD TITLE}";
+ *
+ * must have these defines
+ * ID - The primary key
+ * SEQUENCE - sequence name
+ * WHERE - where clause
+ */
+if(TABLE==CUSTOMER_TABLE)
+ {
+ define("ID","cust_id");
+ define("MAILOK","mail_ok");
+ define("SEQUENCE","custkey");
+ define("WHERE","fname != '-Guest-'");
+ // $DB_fields are used for edit and updating contacts
+ $DB_fields[] = array( name => "cust_id", title => "cust_id", type => "hide");
+ $DB_fields[] = array( name => "purch_date",title => "Last Purchase Date", type => "static");
+ $DB_fields[] = array( name => "access_date",title => "Last Access Date",type => "static");
+ $DB_fields[] = array( name => "create_date",title => "Create Date",type => "static");
+ $DB_fields[] = array( name => "fname", title => "First Name", type => "text");
+ $DB_fields[] = array( name => "lname", title => "Last Name", type => "text");
+ $DB_fields[] = array( name => "add1", title => "Address 1", type => "text");
+ $DB_fields[] = array( name => "add2", title => "Address 2", type => "text");
+ $DB_fields[] = array( name => "city", title => "City", type => "text");
+ $DB_fields[] = array( name => "state", title => "State", type => "text");
+ $DB_fields[] = array( name => "zip", title => "Zip", type => "text");
+ $DB_fields[] = array( name => "email", title => "Email", type => "text");
+ $DB_fields[] = array( name => "phone", title => "Phone", type => "text");
+ $DB_fields[] = array( name => "fax", title => "Fax", type => "text");
+ $DB_fields[] = array( name => "org", title => "Org", type => "text");
+ $DB_fields[] = array( name => "referred_by",title => "Refered By", type => "text");
+ $DB_fields[] = array( name => "mail_ok", title => "Mail Ok?", type => "radio");
+ // $fields are used for building the query page
+ foreach($DB_fields as $key=>$value){
+ if($value['type'] == "text")
+ $fields[$value['name']] = $value['title'];
+ }
+ // date query fields
+ $p_date_from = contact_date_entry("","","","fp_month","fp_day","fp_year");
+ $p_date_to = contact_date_entry("","","","tp_month","tp_day","tp_year");
+ $a_date_from = contact_date_entry("","","","fa_month","fa_day","fa_year");
+ $a_date_to = contact_date_entry("","","","ta_month","ta_day","ta_year");
+ }
+else
+ {
+ define("ID","id");
+ define("MAILOK","mail_ok");
+ define("SEQUENCE","contact_id_seq");
+ define("WHERE",ID." IS NOT NULL");
+ // $DB_fields are used for edit and updating contacts
+ $DB_fields[] = array( name => "id", title => "id", type => "hide");
+ $DB_fields[] = array( name => "create_date",title => "Create Date",type => "static");
+ $DB_fields[] = array( name => "fname", title => "First Name", type => "text");
+ $DB_fields[] = array( name => "lname", title => "Last Name", type => "text");
+ $DB_fields[] = array( name => "company", title => "Company Name",type => "text");
+ $DB_fields[] = array( name => "address", title => "Address", type => "text");
+ $DB_fields[] = array( name => "address2", title => "Address 2", type => "text");
+ $DB_fields[] = array( name => "city", title => "City", type => "text");
+ $DB_fields[] = array( name => "state", title => "State", type => "state");
+ $DB_fields[] = array( name => "zip", title => "Zip", type => "text");
+ $DB_fields[] = array( name => "phone", title => "Phone", type => "text");
+ $DB_fields[] = array( name => "fax", title => "Fax", type => "text");
+ $DB_fields[] = array( name => "email", title => "Email", type => "text");
+ $DB_fields[] = array( name => "mail_ok", title => "Mail Ok?", type => "radio");
+ //$DB_fields[] = array( name => "interest", title => "Interest", type => "interest");
+ // $fields are used for building the query page
+ foreach($DB_fields as $key=>$value)
+ {
+ if($value['type'] == "text" || $value['type'] == "state")
+ {
+ $fields[$value['name']] = $value['title'];
+ }
+ elseif( $value['type'] == "radio" )
+ {
+ $boolean[$value['name']] = $value['title'];
+ }
+ elseif( $value['type'] == "drop" )
+ {
+ $dropdowns[$value['name']] = array( 'title' => $value['title'], 'drop' => $value['drop'] );
+ }
+ }
+ }
+$data['bailout'] .= "You are receiving this message because you have expressed an interest in ";
+$data['bailout'] .= "receiving specials and information from ".SITENAME.". If you do not ";
+$data['bailout'] .= "wish to receive future items of this nature, please reply to this e-mail ";
+$data['bailout'] .= "with the word \"CANCEL\" on the subject line. You will then be removed ";
+$data['bailout'] .= "from future mailings.";
+ $count = 0;
+ foreach($int_array as $key=>$value)
+ {
+ if($count==0)
+ echo " ";
+ echo "$value
";
+ if($count==5)
+ echo "";
+ if($count==11)
+ echo " ";
+ $count++;
+ }
+ echo "
";
+$data['bailout'] .= "".OWNER_EMAIL."
";
+?>
diff --git a/admin/Contact/del_query.phtml b/admin/Contact/del_query.phtml
new file mode 100755
index 0000000..f446bc4
--- /dev/null
+++ b/admin/Contact/del_query.phtml
@@ -0,0 +1,18 @@
+
+
+Query is Deleted
+
+
+
+
+ break;
+
+ case "Add Item":
+ ?>
+
+
+
+ /*
+ echo "Header:
+
+
+ ";
+ */
+ echo "";
+ echo "";
+ /*
+ if($image != "") {
+ echo "Description: ";
+ echo "";
+ echo "
+ Current Image: ";
+ echo "
+
+
+ ";
+ }
+ echo "Delete this image:
+
+ Yes
+ No
+
+ ";
+ */
+ ?>
+ New Image: ";
+ echo "";
+ echo "
+
+
+
+
+
+
+
+
+
+ break;
+
+}
+footer();
+?>
diff --git a/admin/Contact/emails.php b/admin/Contact/emails.php
new file mode 100644
index 0000000..d6d79f3
--- /dev/null
+++ b/admin/Contact/emails.php
@@ -0,0 +1,38 @@
+db_auto_get_data( $query );
+top( "Email HTML Newsletters", "");
+html_nav_table($nav,$navWidth);
+$out = '
+
+ Header:
+
+
+
+
';
+echo $out;
+footer();
+?>
diff --git a/admin/Contact/form.js b/admin/Contact/form.js
new file mode 100755
index 0000000..0bbabf0
--- /dev/null
+++ b/admin/Contact/form.js
@@ -0,0 +1,42 @@
+function reshow(object) {
+ artist = object.options[object.selectedIndex].text;
+ for (var i = document.track.names.length;i > 0;i--)
+ document.track.names.options[0] = null;
+ reloading = true;
+ showlinks();
+ document.track.names.options[0].selected = true;
+ return false;
+}
+
+function load(object) {
+ alert('Just testing: ' + object.options[object.selectedIndex].value);
+ //window.location.href = object.options[object.selectedIndex].value;
+ return false;
+}
+
+function showlinks() {
+ if (artist == 'Chris Rea') {
+ opt('cr/one.zip','The Road To Hell');
+ opt('cr/two.zip','Let\'s Dance');
+ }
+
+ if (artist == 'Annie Lennox') {
+ opt('al/why.zip','Why');
+ opt('al/wobg.zip','Walking on Broken Glass');
+ }
+
+ if (artist == 'Dina Carrol') {
+ opt('dc/track1.zip','Escaping');
+ opt('dc/track2.zip','Only Human');
+ }
+}
+
+function opt(href,text) {
+ if (reloading) {
+ var optionName = new Option(text, href, false, false)
+ var length = document.track.names.length;
+ document.track.names.options[length] = optionName;
+ }
+ else
+ document.write('
+
+
+ ';
+
+if( is_array( $data ) )
+{
+ foreach( $data as $key => $val )
+ {
+ $out .= 'Function:
+ Subject:
+ Last Update:
+
+
+ ';
+ }
+}
+$out .= '[Edit]
+ [View]
+ '.$val["subject"].'
+ '.$val["last_update"].'
+ [Delete]
+
If the record you are editing has an uploaded image, you will see the Delete This Image: header, and "Yes" and "No" radio buttons. If you choose "Yes" and then "Update", you will have permanently removed the "Current Image". The default value is "No." +
++Image: +
++To upload an image, click the "Browse" button. +For the image to be displayed properly, it must be either a "GIF" or "JPEG" +formatted image. Generally, these are saved as filename.gif or filename.jpg. +If you receive an error message while trying to upload an image, the most +common error is that the image is neither a JPEG nor a GIF. Also note that +simply renaming the file from filename.foo to filename.gif will not reformat +the image as a GIF. +
+ + ++Update +
+When you have made the changes you want to the Photo, +you can click "Update." This will update the information about the Item +in the database. +
++Delete +
+If you want to remove the current Item, press the "Delete" button. +
+ + break; + case "add": + ?> ++This page is for adding new Photos in the database. +When editing is complete, click on the "Insert" button. The database will +be updated, and you will be directed back to the "List Photos" page. +
++Title: +
+This is the title that will appear for the "Photo" i.e. "View of the Straits"
++Category: +
+This is the Category that the Photo will appear in on the Gallery Page. The +default value is the current Category.
+ ++Description: +
+This is the text which will describe the Photo. This text will be +displayed with the Photo in the Gallery. +
+ ++Image: +
++To upload an image, click the "Browse" button. +For the image to be displayed properly, it must be either a "GIF" or "JPEG" +formatted image. Generally, these are saved as filename.gif or filename.jpg. +If you receive an error message while trying to upload an image, the most +common error is that the image is neither a JPEG nor a GIF. Also note that +simply renaming the file from filename.foo to filename.gif will not reformat +the image as a GIF. +
+ ++Insert +
+When you have made the changes you want to the Menu Item, +you can click "Insert." This will add the information about the new Item +in the database. +
+ + break; +} +?> ++This page lists the existing Photo Gallery Categories in the database. +
++Add A New Category +
+This link will allow you to add new Categories
++List Categories +
+This link is the page you are currently viewing
+ ++[Edit] +
+This link will let you edit an existing Category
++[List Photos] +
++This link will list out the Photo Gallery Items associated with a particular Category +
+ + + break; + + case "edit": + ?> ++This page is for editing and modifying the existing Photo Gallery Categories in the database. +When editing is complete, click on the "Update" button. The database will +be updated, and you will be directed back to the "List Menu Categories" page. +
+ ++Title: +
+This is the title that will appear for the "Category" i.e. "Pictures of The Island"
++Intro: +
+This is the text which will introduce the Category. This text will be +displayed below the Category Title in the Gallery. +
+ ++Description: +
+This is the text which will fully describe the Category. This text will be +displayed below the Category Title and Intro in the Gallery. +
++Current Image: +
+If the record you are editing has an uploaded image, you will see the Current Image: header, and a small version of the image associated with this Category. +
+Delete This Image: + +If the record you are editing has an uploaded image, you will see the Delete This Image: header, and "Yes" and "No" radio buttons. If you choose "Yes" and then "Update" the Room Rate, you will have permanently removed the "Current Image". The default value is "No." +
++New Image: +
++If you choose, you may upload an image which will be displayed on the +output for the Category. To upload an image, click the "Browse" button. +For the image to be displayed properly, it must be either a "GIF" or "JPEG" +formatted image. Generally, these are saved as filename.gif or filename.jpg. +If you receive an error message while trying to upload an image, the most +common error is that the image is neither a JPEG nor a GIF. Also note that +simply renaming the file from filename.foo to filename.gif will not reformat +the image as a GIF. +
+ ++Update +
+When you have made the changes you want to the Cateogry, +you can click "Update." This will update the information about the Category +in the database. +
++Delete +
+If you want to remove the current Category, press the "Delete" button. +
+ + break; + case "add": + ?> ++This page is for adding Photo Gallery Categories in the database. +When editing is complete, click on the "Insert" button. The database will +be updated, and you will be directed back to the "List Categories" page. +
++Title: +
+This is the title that will appear for the "Category" i.e. "Pictures of The Island"
++Intro: +
+This is the text which will introduce the Category. This text will be +displayed below the Category Title in the Gallery. +
+ ++Description: +
+This is the text which will fully describe the Category. This text will be +displayed below the Category Title and Intro in the Gallery. +
++Image: +
++If you choose, you may upload an image which will be displayed on the +output for the Category. To upload an image, click the "Browse" button. +For the image to be displayed properly, it must be either a "GIF" or "JPEG" +formatted image. Generally, these are saved as filename.gif or filename.jpg. +If you receive an error message while trying to upload an image, the most +common error is that the image is neither a JPEG nor a GIF. Also note that +simply renaming the file from filename.foo to filename.gif will not reformat +the image as a GIF. +
++Insert +
+When you have entered the information you want for the Cateogry, +you can click "Insert." This will add the information about the new Category +in the database. +
+ + break; +} +?> ++This page lists the existing Room Rates from the database. +
++Add A New Room Rate +
+This link will allow you to add new Room Rate
++List Room Rates +
+This link is the page you are currently viewing
+ ++[Edit/Delete] +
+This link will let you edit or delete an existing Room Rate
+ + break; + + case "edit": + ?> ++This page is for editing and modifying an existing Room Rate in the database. +When editing is complete, click on the "Update" button. The database will +be updated, and you will be directed back to the "List Room Rates" page. +
+ ++Title: +
+This is the title that will appear for the "Room Rates" i.e. "Standard Rooms"
++Current Image: +
+If the record you are editing has an uploaded image, you will see the Current Image: header, and a small version of the image associated with this Room Rate. +
+Delete This Image: + +If the record you are editing has an uploaded image, you will see the Delete This Image: header, and "Yes" and "No" radio buttons. If you choose "Yes" and then "Update" the Room Rate, you will have permanently removed the "Current Image". The default value is "No." +
++New Image: +
++If you choose, you may upload an image which will be displayed on the +output for the Room Rate. To upload an image, click the "Browse" button. +For the image to be displayed properly, it must be either a "GIF" or "JPEG" +formatted image. Generally, these are saved as filename.gif or filename.jpg. +If you receive an error message while trying to upload an image, the most +common error is that the image is neither a JPEG nor a GIF. Also note that +simply renaming the file from filename.foo to filename.gif will not reformat +the image as a GIF. +
++Spring-Fall Daily Rates: +
++This is the Daily Rate Price for the Rooms during the Spring through Fall Period. +
++Spring-Fall Weekend Rates: +
++This is the Weekend Rate Price for the Rooms during the Spring and Fall Periods. +
++Summer Daily Rates: +
++This is the Daily Rate Price for the Rooms during the Summer Period. +
++Summer Weekend Rates: +
++This is the Weekend Rate Price for the Rooms during the Summer Period. +
+ ++Update +
+When you have made the changes you want to the Room Rate, +you can click "Update." This will update the information about the Item +in the database. +
++Delete +
+If you want to remove the current Item, press the "Delete" button. +
+ + break; + case "add": + ?> ++This page is for adding new Room Rates into the database. +When editing is complete, click on the "Insert" button. The database will +be updated, and you will be directed back to the "List Specials" page. +
++Title: +
+This is the title that will appear for the "Room Rates" i.e. "Standard Rooms"
++New Image: +
++If you choose, you may upload an image which will be displayed on the +Detailed output for the Event. To upload an image, click the "Browse" button. +For the image to be displayed properly, it must be either a "GIF" or "JPEG" +formatted image. Generally, these are saved as filename.gif or filename.jpg. +If you receive an error message while trying to upload an image, the most +common error is that the image is neither a JPEG nor a GIF. Also note that +simply renaming the file from filename.foo to filename.gif will not reformat +the image as a GIF. +
++Spring-Fall Daily Rates: +
++This is the Daily Rate Price for the Rooms during the Spring through Fall Period. +
++Spring-Fall Weekend Rates: +
++This is the Weekend Rate Price for the Rooms during the Spring and Fall Periods. +
++Summer Daily Rates: +
++This is the Daily Rate Price for the Rooms during the Summer Period. +
++Summer Weekend Rates: +
++This is the Weekend Rate Price for the Rooms during the Summer Period. +
+ ++Insert +
+When you have entered the correct data for the Room Rate, +you can click "Insert." This will add the information about the new Item +in the database. +
+ + break; +} +?> ++This page lists the existing Specials from the database. +
++Add A New Special +
+This link will allow you to add new Special
++List Specials +
+This link is the page you are currently viewing
+ ++[Edit/Delete] +
+This link will let you edit or delete an existing Special
+ + break; + + case "edit": + ?> ++This page is for editing and modifying an existing Special in the database. +When editing is complete, click on the "Update" button. The database will +be updated, and you will be directed back to the "List Specials" page. +
+ ++Title: +
+This is the title that will appear for the "Special" i.e. "Spring Fling Package"
++Intro: +
+This is the text which will introduce the Special on the web page. +
+ ++Description: +
+This is the text which will fully describe the Special. This text will be +displayed below the Special Title and Intro. +
+ ++Update +
+When you have made the changes you want to the Special, +you can click "Update." This will update the information about the Item +in the database. +
++Delete +
+If you want to remove the current Item, press the "Delete" button. +
+ + break; + case "add": + ?> ++This page is for adding new Specials in the database. +When editing is complete, click on the "Insert" button. The database will +be updated, and you will be directed back to the "List Specials" page. +
++Title: +
+This is the title that will appear for the "Special" i.e. "Spring Fling Package"
++Intro: +
+This is the text which will introduce the Special on the web page. +
+ ++Description: +
+This is the text which will fully describe the Special. This text will be +displayed below the Special Title and Intro. +
+ ++Insert +
+When you have entered the correct data for the Special, +you can click "Insert." This will add the information about the new Item +in the database. +
+ + break; +} +?> ++Current Image: +
+If the record you are editing has an uploaded image, you will see the Current Image: header, and a small version of the image. +
+Delete This Image: + +If the record you are editing has an uploaded image, you will see the Delete This Image: header, and "Yes" and "No" radio buttons. If you choose "Yes" and then "Update", you will have permanently removed the "Current Image". The default value is "No." +
++New Image: +
++To upload an image, click the "Browse" button. +For the image to be displayed properly, it must be either a "GIF" or "JPEG" +formatted image. Generally, these are saved as filename.gif or filename.jpg. +If you receive an error message while trying to upload an image, the most +common error is that the image is neither a JPEG nor a GIF. Also note that +simply renaming the file from filename.foo to filename.gif will not reformat +the image as a GIF. +
++Description: +
+This is the text which will be displayed with the Photo on the Home Page. +
+ + ++Update +
+When you have made the changes you want to the Updatable Text, +you can click "Update." This will update the information about each Item +in the database. +
++This page lists the existing Tour Rates from the database. +
++Add A New Tour Rate +
+This link will allow you to add new Tour Rates
++List Tour Rates +
+This link is the page you are currently viewing
+ ++[Edit/Delete] +
+This link will let you edit or delete an existing Tour Rate
+ + break; + + case "edit": + ?> ++This page is for editing and modifying an existing Tour Rate in the database. +When editing is complete, click on the "Update" button. The database will +be updated, and you will be directed back to the "List Tour Rates" page. +
+ ++Season Title: +
+This is the title that will appear for the "Tour Rate" i.e. "Spring Rates"
++Season Span: +
+This is the text for the available dates for this Rate i.e. "June 8 - August 25" +
++Room Rate: +
+This is the Price for this Rate i.e. "$132.00" +
+ ++Update +
+When you have made the changes you want to the Tour Rate, +you can click "Update." This will update the information about the Item +in the database. +
++Delete +
+If you want to remove the current Item, press the "Delete" button. +
+ + break; + case "add": + ?> ++This page is for adding new Tour Rates in the database. +When editing is complete, click on the "Insert" button. The database will +be updated, and you will be directed back to the "List Tour Rates" page. +
++Season Title: +
+This is the title that will appear for the "Tour Rate" i.e. "Spring Rates"
++Season Span: +
+This is the text for the available dates for this Rate i.e. "June 8 - August 25" +
++Room Rate: +
+This is the Price for this Rate i.e. "$132.00" +
++Insert +
+When you have entered the correct data for the Wedding Room, +you can click "Insert." This will add the information about the new Item +in the database. +
+ + break; +} +?> ++This page lists the existing Wedding Rooms from the database. +
++Add A New Wedding Room +
+This link will allow you to add new Wedding Room
++List Wedding Rooms +
+This link is the page you are currently viewing
+ ++[Edit/Delete] +
+This link will let you edit or delete an existing Wedding Room
+ + break; + + case "edit": + ?> ++This page is for editing and modifying an existing Wedding Room in the database. +When editing is complete, click on the "Update" button. The database will +be updated, and you will be directed back to the "List Wedding Rooms" page. +
+ ++Title: +
+This is the title that will appear for the "Wedding Room" i.e. "Mackinac Room"
++Capacity: +
+This is the text for capacity of the room. +
+ ++Update +
+When you have made the changes you want to the Wedding Room, +you can click "Update." This will update the information about the Item +in the database. +
++Delete +
+If you want to remove the current Item, press the "Delete" button. +
+ + break; + case "add": + ?> ++This page is for adding new Wedding Rooms in the database. +When editing is complete, click on the "Insert" button. The database will +be updated, and you will be directed back to the "List Wedding Rooms" page. +
++Title: +
+This is the title that will appear for the "Wedding Room" i.e. "Mackinac Room"
++Capacity: +
+This is the text for capacity of the room. +
+ ++Insert +
+When you have entered the correct data for the Wedding Room, +you can click "Insert." This will add the information about the new Item +in the database. +
+ + break; +} +?> +HTML Tags + <B>BOLD</B> <I>ITALIC</I> <CENTER>CENTER</CENTER> + <FONT COLOR="RED">RED</FONT> <BIG>LARGER FONT SIZE</BIG> + <LI>Bullet + <A HREF="HTTP://www.PLACEYOURWEBURLHERE" TARGET="_BLANK">Hyperlink</A> + <A HREF="mailto:PLACEEMAILADDRESSHERE" TARGET="_BLANK">E-mail Address</A> + A non-breaking space + |
+
+