
larissahn
Members-
Posts
30 -
Joined
-
Last visited
Never
Everything posted by larissahn
-
thanks!
-
ok, thank you, Mike. I moved $body where you said. now the problem I have is I get a "no subject" on the email I received. I tried moving $subject, too, but it didn't work. if($_POST["send"] == "true") { $to = $_POST["to"]; $name = $_POST["name"]; $email = $_POST["email"]; $message = $_POST["message"]; $subject = "Tell a friend"; $body = "Hello,\r\nYour friend $name ($email) has recommended that you see our website $site_name. He has also sent this message along with the recommendation:\r\n" . $message . "\r\n Thank you,\r\n-The webmaster";
-
I should REQUEST them first then?
-
hi, I have this tell a friend php script. it works, it does send the email, but without any of the fields, like subject, friend's name, message. here is the code: <?php $site_name = "www.utilaecology.org"; $subject = "Tell a friend"; $body = "Hello,\r\nYour friend $name ($email) has recommended that you see our website $site_name. He has also sent this message along with the recommendation:\r\n" . $message . "\r\n Thank you,\r\n-The webmaster"; if($_POST["send"] == "true") { $to = $_POST["to"]; $name = $_POST["name"]; $email = $_POST["email"]; $message = $_POST["message"]; if (($name == "") OR ($email == "") OR ($message == "")) { print ("<div id=\"sectionContent\">"); print ("<font color=\"red\">One of the fields was left blank. Please put something in all fields.</font><br><br>"); print ("</div><br>"); email_form(); }elseif(ereg("([[:alnum:]\.\-]+)(\@[[:alnum:]\.\-]+\.+)", $email)) { $recipient = $to; $subject = $the_subject; $additional_headers = ("From: $email\n"); if(mail($recipient, $subject, $body, $additional_headers)) { print ("<div id=\"sectionContent\">"); print ("<font color=\"red\">Tell a friend script mailed your friend at $to about $site_name successfully.<br>Thank you.</font><br><br>"); print ("</div><br>"); }else{ print ("<div id=\"sectionContent\">"); print ("<font color=\"red\">Uh-Oh! Something went wrong with the script! Please try again.</font><br><br>"); print ("</div><br>"); $send = "false"; email_form(); } }else{ print ("<div id=\"sectionContent\">"); print ("<font color=\"red\">That email address does not appear to be valid. Please try again.</font><br><br>"); print ("</div><br>"); $send = "false"; email_form(); } }else{ print ("<div id=\"sectionContent\">"); print ("<p align=\"center\"><font size=\"62\">Tell a friend</font></p>"); print ("</div><br>"); email_form(); } function email_form(){ global $subject_array, $recipient_array, $this_script, $PHP_SELF; print ("<div id=\"sectionContent\">"); print ("<form METHOD=POST action=\"$PHP_SELF\">\n"); print ("<table align=\"center\" border=\"1\" bordercolor=\"E0E8EF\"><tr><td align=\"left\">"); print ("To:<br>\n"); print ("</td><td>"); print ("<input type=\"text\" name=\"to\" size=\"30\"><br>\n"); print ("</td></tr><tr><td align=\"left\">"); print ("Name:<br>\n"); print ("</td><td>"); print ("<input type=\"text\" name=\"name\"><br>\n"); print ("</td></tr><tr><td align=\"left\">"); print ("Your Email Address:<br>\n"); print ("</td><td>"); print ("<input type=\"text\" name=\"email\" size=\"40\"><br>\n"); print ("</td></tr><tr><td align=\"left\">"); print ("Your Message:<br>\n"); print ("</td><td>"); print ("<textarea cols=\"50\" rows=\"5\" name=\"message\"></textarea><br>\n"); print ("</td></tr><tr><td>"); print ("</td>"); print ("<td>"); print ("<input type=\"hidden\" name=\"send\" value=\"true\">\n"); print ("<input type=\"submit\" value=\"Submit\"> \n"); print ("<input type=\"reset\" value=\"Reset Fields\">\n"); print ("</td></tr></table>"); print ("</form>\n"); print ("<div align=\"center\"><font size=\"1\" color=\"888888\">"); print ("script by <a href=\"mailto:[email protected]\">leapinglangoor</a>"); print ("</font></div>"); print ("</div>"); } ?>Thanks!
-
Problem with datepicker from rainforest.net
larissahn replied to larissahn's topic in Javascript Help
you are an angel! thank u so much! can u tell me of a simple way to validate the email, please? many thanks. -
Problem with datepicker from rainforest.net
larissahn replied to larissahn's topic in Javascript Help
hi, I made the changes you suggested, but it still doesn't work. there is no popup, just an error. this is the new code: <?php include('../includes/core.php'); layout_start(true); ?> <style type="text/css"> <!-- .Estilo3 {font-size: 12px} --> </style> <script type="text/javascript" src="datetimepicker_css.js"></script> <table width="599" border="0" cellspacing="4" cellpadding="5"> <tr> <td width="567" height="28" background="../assets/images/section-bkgd_long.gif" class="SectionText">Report lionfish sighting</td> </tr> <tr> <td><p align="justify">Please fill in the form below if you would like to report a lionfish sighting and we will get back to you as soon as possible. </p> <hr size="1" noshade="noshade" /></td> </tr> <tr> <td><form name="LionfishContactForm" method="post" action="sendmail.php"> <table width="100%" border="0"> <tr> <td><div align="left"> <label>Name:</label> </div></td> <td><input name="name" type="text" id="name" size="60" maxlength="30"></td> </tr> <tr> <td><div align="left"> <label>Email:</label> </div></td> <td><input name="email" type="text" id="email" size="60" maxlength="30"></td> </tr> <tr> <td><label>Date:</label> </td> <td><input name="date" type="text" id="date" size="35"> <a href="javascript:NewCssCal('demo1')"> <img src="../assets/images/cal.gif" alt="Pick a date"></a> </tr> <tr> <td><div align="left"> of course, there are other fiels after the date. but they are not important, I think? I have uploaded all the files needed to the server. there is no html head, because I'm calling a function that stores the template of my site. I'm really not sure where the problem is. thanks! -
hello, I created a php form. http://www.utilaecology.org/research/lionfish_contact.php I want the user to be able to select the date from a calendar, but I've had so many problems. http://www.rainforestnet.com/datetimepicker.htm this is the code for the form up until the date text field. <?php include('../includes/core.php'); layout_start(true); ?> <style type="text/css"> <!-- .Estilo3 {font-size: 12px} --> </style> <script type="text/javascript" src="datetimepicker_css.js"></script> <table width="599" border="0" cellspacing="4" cellpadding="5"> <tr> <td width="567" height="28" background="../assets/images/section-bkgd_long.gif" class="SectionText">Report lionfish sighting</td> </tr> <tr> <td><p align="justify">Please fill in the form below if you would like to report a lionfish sighting and we will get back to you as soon as possible. </p> <hr size="1" noshade="noshade" /></td> </tr> <tr> <td><form name="LionfishContactForm" method="post" action="sendmail.php"> <table width="100%" border="0"> <tr> <td><div align="left"> <label>Name:</label> </div></td> <td><input name="name" type="text" id="name" size="60" maxlength="30"></td> </tr> <tr> <td><div align="left"> <label>Email:</label> </div></td> <td><input name="email" type="text" id="email" size="60" maxlength="30"></td> </tr> <tr> <td><label>Date:</label> </td> <td><input name="date" type="text" id="date" size="35"> <img src="../assets/images/cal.gif" alt="Pick a date"> </tr>
-
hi, I created this form. to avoid errors, I'd like the user to select the date from a calendar that pops up. unfortunately, I haven't been able to make it work. http://www.mattkruse.com/javascript/calendarpopup/ var cal1x = new CalendarPopup("testdiv1"); my form: <?php include('../includes/core.php'); layout_start(true); ?> <style type="text/css"> <!-- .Estilo3 {font-size: 12px} --> </style> <table width="599" border="0" cellspacing="4" cellpadding="5"> <tr> <td width="567" height="28" background="../assets/images/section-bkgd_long.gif" class="SectionText">Report lionfish sighting</td> </tr> <tr> <td><p align="justify">Please fill in the form below if you would like to report a lionfish sighting and we will get back to you as soon as possible. </p> <hr size="1" noshade="noshade" /></td> </tr> <tr> <td><form name="LionfishContactForm" method="post" action="sendmail.php"> <table width="100%" border="0"> <tr> <td><div align="left"> <label>Name:</label> </div></td> <td><input name="name" type="text" id="name" size="60" maxlength="30"></td> </tr> <tr> <td><div align="left"> <label>Email:</label> </div></td> <td><input name="email" type="text" id="email" size="60" maxlength="30"></td> </tr> <tr> <td><label>Date:</label> </td> <td><input name="date" type="text" id="date" size="35"></td> </tr> <tr> <td><div align="left"> there are other questions, but it is right here on DATE where I want the calendar. I always appreciate your help.
-
thank you, followed both your suggestions. does anybody know for the date option what code I'd need to display a popup showing a calendar? thank you. this is my new code: <?php $name = $_REQUEST['name'] ; $email = $_REQUEST['email'] ; $date = $_REQUEST['date'] ; $dive_site = $_REQUEST['dive_site'] ; $depth = $_REQUEST['depth'] ; $additional_information = $_REQUEST['additional_information'] ; $message = "Date: ".$date."\r\nDive Site Location: ".$dive_site."\r\nDepth: ".$depth."\r\nAdditional Information:". $additional_information."\r\n"; if (!isset($_REQUEST['email'])) { echo "No email entered." ; } elseif (empty($email) || empty($dive_site)) { echo "Else If Statement"; } else { mail ( "[email protected]", "Report Lionfish Sighting Form", $message, "From: ".$name." <".$email.">" ) ; header ( "Location: http://www.utilaecology.org/contact/response.php" ) ; } ?>
-
Hi, I recently created a simple form for my website, http://www.utilaecology.org/research/lionfish_contact.php the feedback should be sent to my email, but I am not receiving anything. <?php $name = $_REQUEST['name'] ; $email = $_REQUEST['email'] ; $date = $_REQUEST['date'] ; $dive_site = $_REQUEST['dive_site'] ; $depth = $_REQUEST['depth'] ; $additional_information = $_REQUEST['additional_information'] ; if (!isset($_REQUEST['email'])) { header( "Location: http://www.utilaecology.org/contact/response.php" ); } elseif (empty($email) || empty($dive_site)) { header( "Location: http://www.utilaecology.org/contact/response.php" ); } else { mail ( "[email protected]", "Report Lionfish Sighting Form", "Date: $date\n", "Dive Site Location: $dive_site\n", "Depth: $depth\n", "Additional Information: $additional_information\n", "From: $name <$email>" ) ; header ( "Location: http://www.utilaecology.org/contact/response.php" ) ; } ?>
-
hi, this question might just be the stupidest ever, but I want to be careful and not mess anything up. this is the code for a drop down menu I have in an application page. <select name="ProgrammeName" id="ProgrammeName"> <option value="" selected="selected" disabled="disabled">Select Programme</option> <option value="2-Week" <?php if (!(strcmp("2-Week", KT_escapeAttribute($row_rstblapplication['ProgrammeName'])))) {echo "SELECTED";} ?>>2-Week</option> <option value="4-Week" <?php if (!(strcmp("4-Week", KT_escapeAttribute($row_rstblapplication['ProgrammeName'])))) {echo "SELECTED";} ?>>4-Week</option> <option value="8-Week" <?php if (!(strcmp("8-Week", KT_escapeAttribute($row_rstblapplication['ProgrammeName'])))) {echo "SELECTED";} ?>>8-Week</option> </select> to change from a 2 week to a 3 week option, I just substitute the 3 for a 2, right? I think it is just a string, I'm just not sure what >2-Week</option> at the end of the line is, not calling a variable, right?
-
tried the search with no luck. regarding the rest of the things you wrote, in dreamweaver I only have access to the www folder, I wouldn't know where to look for the database. the code is there and I am trying to do exactly what you said: "you need to know how the system works with the pages (if at all) and we have zero info on that!"
-
sure, I didn't write it. they handed out this problem to me and I'm still trying to figure out how the site works. what made me think this is PHP? all the pages of the site are PHP files, index.php, programme.php, oceans.php if it is static HTML, why can't I make any changes to the code for the menu? I can modify the code for other parts of the page.
-
if anyone has time to go over the code of one of the pages of the site, I'd really appreciate it. [attachment deleted by admin]
-
the problem is that i can't paste the whole code for the page, 'cause it's against the rules.
-
ok, i'm pasting the first lines of the code for a menu. i don't know how it's being generated, because i can read the code for the menu on every page of the site, but dreamweaver doesn't allow me to modify it. i looked for a menu.php on the server or something similar and there is nothing. any ideas, please? td background="../assets/images/container-bkgd.gif"><table width="880" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td width="840" height="25" bgcolor="#4C7AAB"><div id="cssMenu1" class="horizontal"> <ul class="modern_blue"> <li> <a href="../index.php">About</a> <ul> <li> <a href="../about/aims.php">Aims & Objectives</a> </li> <li> <a href="../about/history.php">History</a> </li> <li> <a href="../about/staff.php">Staff</a> </li> <li> <a href="../about/interns.php">Interns</a> </li>
-
ok, i have the code view in dreamweaver. in the design view i can't even place the mouse over the menu. the code for the menu has this grayish color, so i can't cut, copy, paste anything. i'm thinking that the menu has it's own .php file, so u don't need to modify it page by page. i just can't seem to find where it is.
-
the page is called programme.php of course i know it's got some html and some php. the problem i have is that i can't edit the menu of the site. there is no menu.php and on the rest of the pages, i can read the code (for the menu), but i can't modify it.
-
ok, i apologize, i just don't know WHERE i can modify the menu.
-
yeah, sorry, this is the code for the menu. i just can't edit it right there. <td background="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/assets/images/container-bkgd.gif"><table width="880" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td width="840" height="25" bgcolor="#4C7AAB"><div id="cssMenu1" class="horizontal"> <ul class="modern_blue"> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/index.php">About</a> <ul> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/about/aims.php">Aims & Objectives</a> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/about/history.php">History</a> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/about/staff.php">Staff</a> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/about/interns.php">Interns</a> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/about/partners.php">Partners</a> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/about/funding.php">Funding</a> </li> <!--<li> <a href="../about/facilities.php">Facilities</a> </li>--> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/about/travel.php">Responsible Travel</a> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/about/acknowledgements.php">Acknowledgements</a> </li> </ul> </li> <li><a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/volunteer/research">Research</a> <ul> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/research/coralreefs">Coral Reefs</a> <ul> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/bleachwatch">Coral Bleaching</a> </li> </ul> <!--<li> <a href="../research/coralreefs/algae.php">Algal Dynamics</a> </li> <li> <a href="../research/coralreefs/grazing.php">Grazing & Herbivory</a> </li>--> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/research/fisheries">Fisheries</a> <!--<ul> <li> <a href="../research/fisheries/conch.php">Conch</a> </li> <li> <a href="../research/fisheries/grouper.php">Grouper</a> </li> <li> <a href="../research/fisheries/zooplankton.php">Zooplankton</a> </li> <li> <a href="../research/fisheries/lobster.php">Spawning Aggregations</a> </li> </ul>--> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/research/megafauna">Megafauna</a> <ul> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/research/megafauna/whalesharks.php">Whale Sharks</a> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/research/megafauna/cetaceans.php">Cetaceans</a> </li> <!--<li> <a href="../research/megafauna/sightings.php">Sightings</a> </li><--> </ul> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/research/islandecology.php">Island Ecology</a> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/research/coconuts.php">Coconuts</a> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/research/mangroves">Mangroves</a> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/research/seagrass">Seagrass</a> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/research/projects.php">Project Proposals</a> </li> </ul> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/volunteer">Volunteer</a> <ul> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/volunteer/programme.php">Programmes & Costs</a> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/volunteer/internships.php">Internships</a> </li> <!--<li> <a href="../volunteer/learning.php">Key Areas of Learning</a> </li>--> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/volunteer/beautifuloceans.php">Beautiful Oceans</a> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/volunteer/blog.php">Blog</a> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/volunteer/faq.php">FAQ</a> </li> <!--<li> <a href="../volunteer/proposals.php">Projects & Proposals</a> </li>--> </ul> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/community">Community</a> <ul> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/community/education.php">Education</a> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/community/socioeconomic.php">Socioeconomics</a> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/community/traditional.php">Traditional Knowledge</a> </li> </ul> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/ecology">Ecology</a> <ul> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/ecology/coralreefs">Coral Reefs</a> <!--<ul> <li> <a href="../ecology/coralreefs/phaseshifts.php">Phase Shifts</a> </li> <li> <a href="../ecology/coralreefs/herbivory.php">Herbivory</a> </li> <li> <a href="../ecology/coralreefs/algae.php">Algal Dynamics</a> </li> <li> <a href="../ecology/coralreefs/bleaching.php">Coral Bleaching</a> </li> <li> <a href="../ecology/coralreefs/disease.php">Coral Disease</a> </li> </ul>--> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/ecology/seagrass">Seagrass</a></li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/ecology/mangroves">Mangroves</a></li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/ecology/connectivity">Connectivity</a></li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/ecology/whalesharks/index.php">Whale Sharks</a></li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/ecology/cetaceans/index.php">Cetaceans</a> <!--<ul> <li> <a href="../ecology/cetaceans/spinners.php">Spinner Dolphins</a> </li> <li> <a href="../ecology/cetaceans/bottlenose.php">Bottlenose Dolphins</a> </li> <li> <a href="../ecology/cetaceans/roughtooth.php">Rough-tooth Dolphins</a> </li> <li> <a href="../ecology/cetaceans/orcas.php">Orcas</a> </li> <li> <a href="../ecology/cetaceans/pilotwhales.php">Pilot Whales</a> </li> </ul>--> </li> </ul> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/downloads">Downloads</a> <ul> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/downloads/documents.php">Documents</a> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/downloads/wallpapers.php">Wallpapers</a> </li> </ul> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/links">Links</a> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/utila">Utila</a> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/news">News</a> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/contact">Contact</a> </li> </ul> <br />
-
earlier on i needed some help making some changes to the menu. i understood what i had to do pretty well. however, dreamweaver showed me the code for the menu (inside one of the pages of the site, let's say programmes.php), but it wouldn't let me edit the code. so, with no experience regarding php whatsoever, i am thinking that there must be an independent .php file that generates the menu. i imagine that when u edit the code inside that file, there is no need to go page by page changing the menu. the problem is that i can't seem to find the file that corresponds to the menu. i'm pasting the code of one of the pages, maybe u can point me to the right direction. thanx.<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/Templates/default.dwt.php" codeOutsideHTMLIsLocked="false" --> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <!-- InstanceBeginEditable name="doctitle" --> <title>Volunteer in the Honduran Caribbean with Utila Centre for Marine Ecology conservation, ecology & development projects: dolphins, whale sharks, coral reefs, fisheries, mangroves, seagrass, scuba diving</title> <!-- InstanceEndEditable --> <meta name="description" content="Volunteer in the Caribbean during your gap year, career break or student internship working to protect threatened coral reefs, whales sharks, dolphins, mangroves, seagrass beds and fisheries; learn to scuba dive and gain experience in marine and terrestrial ecological survey techniques." /> <style type="text/css"> body { background-image: url(file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/assets/images/body-bkgd.gif); height: 100%; } </style> <!-- InstanceBeginEditable name="head" --> <title>Utila Centre for Marine Ecology :: Volunteer</title> <style type="text/css"> <!-- .style11 {font-weight: bold} --> </style> <!-- InstanceEndEditable --> <link rel="icon" type="image/png" href="http://www.utilaecology.org/favicon.png"> <link href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/assets/style/style.css" rel="stylesheet" type="text/css" /> <script src="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/includes/cssmenus2/js/cssmenus.js" type="text/javascript"></script> <script src="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/includes/cssmenus2/js/animation.js" type="text/javascript"></script> <link href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/includes/cssmenus2/skins/modern_blue/horizontal.css" rel="stylesheet" type="text/css" /> <style type="text/css"> <!-- .style1 {color: #FFFFFF} --> </style> </head> <body> <table width="900" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td background="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/assets/images/top-curve.gif" height="12"></td> </tr> <tr> <td background="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/assets/images/container-bkgd.gif"><table width="880" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td width="40"></td> <td width="647" class="HeaderText">Supporting the management and sustainable use of marine biodiversity in Honduras <span class="style1">Photos by George Stoyle</span></td> <td width="157" class="BodyText"><div align="right"><a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/apply">Apply</a> | <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/links">Links</a> | <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/contact">Contact</a></div></td> <td width="29"> </td> <td> </td> </tr> <tr> <td colspan="4"><img src="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/assets/images/banner.jpg" width="873" height="100" border="0" usemap="#Map" /></td> <td width="7"> </td> </tr> </table></td> </tr> <tr> <td background="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/assets/images/container-bkgd.gif"><table width="880" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td width="840" height="25" bgcolor="#4C7AAB"><div id="cssMenu1" class="horizontal"> <ul class="modern_blue"> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/index.php">About</a> <ul> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/about/aims.php">Aims & Objectives</a> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/about/history.php">History</a> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/about/staff.php">Staff</a> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/about/interns.php">Interns</a> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/about/partners.php">Partners</a> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/about/funding.php">Funding</a> </li> <!--<li> <a href="../about/facilities.php">Facilities</a> </li>--> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/about/travel.php">Responsible Travel</a> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/about/acknowledgements.php">Acknowledgements</a> </li> </ul> </li> <li><a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/volunteer/research">Research</a> <ul> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/research/coralreefs">Coral Reefs</a> <ul> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/bleachwatch">Coral Bleaching</a> </li> </ul> <!--<li> <a href="../research/coralreefs/algae.php">Algal Dynamics</a> </li> <li> <a href="../research/coralreefs/grazing.php">Grazing & Herbivory</a> </li>--> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/research/fisheries">Fisheries</a> <!--<ul> <li> <a href="../research/fisheries/conch.php">Conch</a> </li> <li> <a href="../research/fisheries/grouper.php">Grouper</a> </li> <li> <a href="../research/fisheries/zooplankton.php">Zooplankton</a> </li> <li> <a href="../research/fisheries/lobster.php">Spawning Aggregations</a> </li> </ul>--> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/research/megafauna">Megafauna</a> <ul> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/research/megafauna/whalesharks.php">Whale Sharks</a> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/research/megafauna/cetaceans.php">Cetaceans</a> </li> <!--<li> <a href="../research/megafauna/sightings.php">Sightings</a> </li><--> </ul> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/research/islandecology.php">Island Ecology</a> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/research/coconuts.php">Coconuts</a> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/research/mangroves">Mangroves</a> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/research/seagrass">Seagrass</a> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/research/projects.php">Project Proposals</a> </li> </ul> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/volunteer">Volunteer</a> <ul> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/volunteer/programme.php">Programmes & Costs</a> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/volunteer/internships.php">Internships</a> </li> <!--<li> <a href="../volunteer/learning.php">Key Areas of Learning</a> </li>--> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/volunteer/beautifuloceans.php">Beautiful Oceans</a> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/volunteer/blog.php">Blog</a> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/volunteer/faq.php">FAQ</a> </li> <!--<li> <a href="../volunteer/proposals.php">Projects & Proposals</a> </li>--> </ul> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/community">Community</a> <ul> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/community/education.php">Education</a> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/community/socioeconomic.php">Socioeconomics</a> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/community/traditional.php">Traditional Knowledge</a> </li> </ul> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/ecology">Ecology</a> <ul> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/ecology/coralreefs">Coral Reefs</a> <!--<ul> <li> <a href="../ecology/coralreefs/phaseshifts.php">Phase Shifts</a> </li> <li> <a href="../ecology/coralreefs/herbivory.php">Herbivory</a> </li> <li> <a href="../ecology/coralreefs/algae.php">Algal Dynamics</a> </li> <li> <a href="../ecology/coralreefs/bleaching.php">Coral Bleaching</a> </li> <li> <a href="../ecology/coralreefs/disease.php">Coral Disease</a> </li> </ul>--> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/ecology/seagrass">Seagrass</a></li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/ecology/mangroves">Mangroves</a></li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/ecology/connectivity">Connectivity</a></li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/ecology/whalesharks/index.php">Whale Sharks</a></li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/ecology/cetaceans/index.php">Cetaceans</a> <!--<ul> <li> <a href="../ecology/cetaceans/spinners.php">Spinner Dolphins</a> </li> <li> <a href="../ecology/cetaceans/bottlenose.php">Bottlenose Dolphins</a> </li> <li> <a href="../ecology/cetaceans/roughtooth.php">Rough-tooth Dolphins</a> </li> <li> <a href="../ecology/cetaceans/orcas.php">Orcas</a> </li> <li> <a href="../ecology/cetaceans/pilotwhales.php">Pilot Whales</a> </li> </ul>--> </li> </ul> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/downloads">Downloads</a> <ul> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/downloads/documents.php">Documents</a> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/downloads/wallpapers.php">Wallpapers</a> </li> </ul> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/links">Links</a> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/utila">Utila</a> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/news">News</a> </li> <li> <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/contact">Contact</a> </li> </ul> <br /> <script type="text/javascript"> <!-- var obj_cssMenu1 = new CSSMenu("cssMenu1"); obj_cssMenu1.setTimeouts(400, 200, 800); obj_cssMenu1.setSubMenuOffset(0, 1, -10, 5); obj_cssMenu1.setHighliteCurrent(true); obj_cssMenu1.setAnimation('slide'); obj_cssMenu1.show(); //--> </script> </div> </td> <td width="3" bgcolor="#4C7AAB"> </td> <td width="7"> </td> </tr> <tr> <td height="1"></td> <td height="7" colspan="2"></td> </tr> </table></td> </tr> <tr> <td background="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/assets/images/container-bkgd.gif"><table width="880" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td width="138" valign="top" bgcolor="#FFFFFF"><table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr bgcolor="#FFFFFF"> <td height="210" valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr bgcolor="#FFFFFF"> <td valign="top"><div align="left"><a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/volunteer"><img src="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/assets/images/buttons/volunteer.gif" width="131" height="70" hspace="3" vspace="3" border="0" /></a></div></td> </tr> <tr bgcolor="#FFFFFF"> <td valign="top"><div align="left"><a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/students"><img src="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/assets/images/buttons/students.gif" width="131" height="70" hspace="3" vspace="3" border="0" /></a></div></td> </tr> <tr bgcolor="#FFFFFF"> <td height="76" valign="top"><div align="center"><a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/research"><img src="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/assets/images/buttons/research.gif" width="131" height="70" vspace="3" border="0" /></a></div></td> </tr> <tr bgcolor="#FFFFFF"> <td valign="top"><a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/diving"><img src="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/assets/images/buttons/diving.gif" width="131" height="70" hspace="3" vspace="3" border="0" /></a></td> </tr> <tr bgcolor="#FFFFFF"> <td valign="top"><a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/videos"><img src="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/assets/images/buttons/videos.gif" width="131" height="70" hspace="3" vspace="3" border="0" /></a></td> </tr> </table></td> </tr> </table></td> <td width="622" rowspan="2" valign="top" bgcolor="#FFFFFF" class="LeftRightBorder BodyText"><!-- InstanceBeginEditable name="Content" --> <table width="599" border="0" cellspacing="4" cellpadding="5"> <tr> <td height="28" background="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/assets/images/section-bkgd_long.gif" class="SectionText"><span class="ParaTitle">Volunteer Programme - In Brief</span></td> </tr> <tr> <td valign="top"><p align="justify" class="BodyText"><strong>Stage I - Dive Training<br /> </strong></p></td> </tr> <tr> <td valign="top"><span class="BodyText"><a href="http://www.utiladivecenter.com" target="_blank">Utila Dive Centre</a> PADI instructors will train you through PADI Open Water and Advanced Open Water standard with a course tailored to the future diving you’ll be doing.<br /> Skip stage I if already qualified to at least AOW or equivalent. </span></td> </tr> <tr> <td valign="top"><span class="BodyText"><strong>Stage II - Ecology Training Programme</strong></span></td> </tr> <tr> <td valign="top"><span class="BodyText">A week long course of multi-media presentations and field study sessions that will teach you about tropical marine ecology and train you in the techniques you'll need to work in the on-going research and monitoring programmes. </span></td> </tr> <tr> <td valign="top"><span class="BodyText"><strong>Stage III - Volunteer Ecology Programme</strong></span></td> </tr> <tr> <td valign="top" class="BottomBorder"><span class="BodyText">Take part in a rotating set of projects working side by side with marine biologists and conservation specialists conducting research to better understand and conserve threatened ecosystems. Projects encompass several areas of tropical marine and island research and will include a mixture of SCUBA, boat based and terrestrial work.</span></td> </tr> <tr> <td valign="top"><span class="FirstPara"><strong>Prices</strong></span></td> </tr> <tr> <td valign="top"><table width="500" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#CCCCCC" class="BodyText"> <tr> <td valign="top" bgcolor="#E0E0E0"><strong>Programme</strong></td> <td valign="top" bgcolor="#E0E0E0"><div align="center"><strong>2009</strong></div></td> </tr> <tr> <td width="338" valign="top" bgcolor="#FFFFFF"><p>3 Week Ecology Programme (<a href="#start">see dates</a>)</p></td> <td valign="top" bgcolor="#FFFFFF"><div align="center">£949 </div></td> </tr> <tr> <td width="338" valign="top" bgcolor="#FFFFFF"><p>4 Week Ecology Programme (<a href="#start">see dates</a>)</p></td> <td valign="top" bgcolor="#FFFFFF"><p align="center">£1149 </p></td> </tr> <tr> <td width="338" valign="top" bgcolor="#FFFFFF"><p>8 Week Ecology Programme (<a href="#start">see dates</a>)</p></td> <td valign="top" bgcolor="#FFFFFF"><p align="center">£2185 </p></td> </tr> <tr> <td width="338" valign="top" bgcolor="#FFFFFF"><p>UCME DM Combo - 8 weeks (<a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/pdf/Volunteer%20and%20Divemaster%20info.zip">download info</a>)</p></td> <td valign="top" bgcolor="#FFFFFF"><p align="center">£2655 </p></td> </tr> <tr> <td colspan="2" valign="top" bgcolor="#FFFFFF">Prices exclude dive training and participants must be PADI Advanced or equivalent.<br /> Additional one week’s dive training to PADI Advanced open water (if required) £415</td> </tr> <tr> <td colspan="2" valign="top" bgcolor="#E0E0E0"><p><strong>Extensions</strong></p> </td> </tr> <tr> <td width="338" valign="top" bgcolor="#FFFFFF"><p>Extensions per week beyond 2 or 4 weeks </p></td> <td valign="top" bgcolor="#FFFFFF"><p align="center">£285 </p></td> </tr> <tr> <td width="338" valign="top" bgcolor="#FFFFFF"><p>Extensions per week beyond 8 weeks </p></td> <td valign="top" bgcolor="#FFFFFF"><p align="center">£205 </p></td> </tr> <tr> <td colspan="2" valign="top" bgcolor="#E0E0E0"><p align="left"><strong>Dive Training</strong></p> </td> </tr> <tr> <td width="338" valign="top" bgcolor="#FFFFFF"><p>PADI Open water and Advanced </p></td> <td valign="top" bgcolor="#FFFFFF"><p align="center">£415</p></td> </tr> <tr> <td width="338" valign="top" bgcolor="#FFFFFF"><p>PADI Advanced only </p></td> <td valign="top" bgcolor="#FFFFFF"><p align="center">£205 </p></td> </tr> <tr> <td width="338" valign="top" bgcolor="#FFFFFF"><p align="left">PADI Emergency First Response (EFR) and Rescue Course </p></td> <td valign="top" bgcolor="#FFFFFF"><p align="center">can be arranged </p></td> </tr> <tr> <td width="338" valign="top" bgcolor="#FFFFFF"><p align="left">Refresher course for people who haven't dived for a while </p></td> <td valign="top" bgcolor="#FFFFFF"><p align="center">£35 </p></td> </tr> <tr> <td colspan="2" valign="top" bgcolor="#E0E0E0"><strong>Other</strong></td> </tr> <tr> <td valign="middle" bgcolor="#FFFFFF">1 Night a Villa Nuria San Pedro Sula </td> <td valign="top" bgcolor="#FFFFFF"><div align="center"> approx$52 – pay on arrival </div></td> </tr> <tr> <td valign="top" bgcolor="#FFFFFF">Flight to Utila from San Pedro Sula – one way </td> <td valign="top" bgcolor="#FFFFFF"><div align="center"> At price on invoice due date </div></td> </tr> <tr> <td valign="top" bgcolor="#FFFFFF">Additional nights FB in volunteer apartment, per night </td> <td valign="top" bgcolor="#FFFFFF"><div align="center">£6 </div></td> </tr> </table> <table border="0" cellspacing="0" cellpadding="0" width="584"> <tr> <td width="432" valign="top"></td> <td width="151" valign="top"></td> </tr> <tr> <td width="432" valign="top"></td> <td width="151" valign="top"></td> </tr> </table> <p align="center"><a href="http://www.xe.com/ucc/full/" target="_blank">Currency Conversion</a></p> <p align="center"> Extra weeks and additional SCUBA courses available; Prices on <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/contact/index.php">request</a> </p> </td> </tr> <tr> <td valign="top" class="BottomBorder"><strong>What is included?</strong><br /> Met at Utila airport<br /> Outward bound transfers to and from San Pedro airport for those staying overnight at Villa Nuria Hotel only<br /> Accommodation (shared volunteer apartment)<br /> Breakfast and lunch<br /> Household<br /> Laundry service<br /> Comprehensive orientation<br /> Full Ecology training programme<br /> Specialised Research Diver training<br /> Underwater photography course<br /> up to 10 dives a week<br /> Hyperbaric chamber insurance and Reef fees<br /> Full support from on-site staff<br /> 24 hour emergency assistance<br /> Plenty of opportunities to explore the island<br /> <br /> <strong>What is not included?</strong><br /> Flights<br /> Extra activities or additional dive courses not on itinerary<br /> Travel Insurance<br /> Transfer to Utila airport on return<br /> Personal Laundry <br /> <br /> <strong>Highlights include</strong><br /> Daily diving on spectacular coral reefs, whale shark and dolphin encounters, learning about<br /> marine and island ecology, training in underwater research techniques, participating in active<br /> data collection, assisting marine biologists in ongoing conservation efforts, helping with<br /> awareness programmes in the local community.</td> </tr> <tr> <td valign="top"><span class="FirstPara"><strong>Start Dates (2009)<a name="start" id="start"></a></strong></span></td> </tr> <tr> <td valign="top"><table width="282" border="0" align="center" cellpadding="2" cellspacing="1" bgcolor="#CCCCCC"> <tr> <td width="50%" valign="middle" bgcolor="#E0E0E0"><div align="center"> <div align="center"><strong>2009</strong> </p> </div></td> </tr> <tr> <td bgcolor="#FFFFFF"><div align="center">12/01/2009</div></td> </tr> <tr> <td bgcolor="#FFFFFF"><div align="center">09/02/2009</div></td> </tr> <tr> <td bgcolor="#FFFFFF"><div align="center">09/03/2009</div></td> </tr> <tr> <td bgcolor="#FFFFFF"><div align="center">06/04/2009</div></td> </tr> <tr> <td bgcolor="#FFFFFF"><div align="center">04/05/2009</div></td> </tr> <tr> <td bgcolor="#FFFFFF"><div align="center">01/06/2009</div></td> </tr> <tr> <td bgcolor="#FFFFFF"><div align="center">29/06/2009</div></td> </tr> <tr> <td bgcolor="#FFFFFF"><div align="center">27/07/2009</div></td> </tr> <tr> <td bgcolor="#FFFFFF"><div align="center">24/08/2009</div></td> </tr> <tr> <td bgcolor="#FFFFFF"><div align="center">21/09/2009</div></td> </tr> </table></td> </tr> <tr> <td valign="top"><div align="center"><span class="BodyText style11">* Dive trainees must arrive one week before these dates</span></div></td> </tr> <tr> <td valign="top"><div align="center"><span class="BodyText"><a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/volunteer/volunteer%20programme%20V9_1.pdf" target="_blank" class="style6">Learn more by <span class="style7">downloading an information pack</span></a> or <a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/contact">contact us</a></span></div></td> </tr> </table> <!-- InstanceEndEditable --></td> <td width="138" height="495" valign="top" bgcolor="#FFFFFF"><table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr bgcolor="#FFFFFF"> <td valign="top"><div align="right"><a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/community/education.php"><img src="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/assets/images/buttons/education.gif" width="131" height="70" hspace="3" vspace="3" border="0" /></a></div></td> </tr> <tr bgcolor="#FFFFFF"> <td valign="top"><div align="right"><a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/community"><img src="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/assets/images/buttons/community.gif" width="131" height="70" hspace="3" vspace="3" border="0" /></a></div></td> </tr> <tr bgcolor="#FFFFFF"> <td valign="top"><div align="right"><a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/gallery"><img src="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/assets/images/buttons/gallery.gif" width="131" height="70" hspace="3" vspace="3" border="0" /></a></div></td> </tr> <tr bgcolor="#FFFFFF"> <td valign="top"><div align="right"><a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/downloads"><img src="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/assets/images/buttons/downloads.gif" width="131" height="70" hspace="3" vspace="3" border="0" /></a></div></td> </tr> <tr bgcolor="#FFFFFF"> <td valign="top"><div align="right"><a href="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/utila"><img src="file:///C|/Documents%20and%20Settings/Acosta/Mis%20documentos/ucme/assets/images/buttons/utila.gif" width="131" heig
-
[SOLVED] moving and deleting buttons from a menu
larissahn replied to larissahn's topic in PHP Coding Help
thanx. -
[SOLVED] moving and deleting buttons from a menu
larissahn replied to larissahn's topic in PHP Coding Help
the site is utilaecology.org the menu gives us the options about, research, volunteer, community, ecology, etc. under volunteer, we get 4 more options: programmes & costs internships beautiful oceans blog faq i want to completely remove the beautiful oceans option from the menu and move FAQ up to put it under the programmes & costs options. -
[SOLVED] moving and deleting buttons from a menu
larissahn replied to larissahn's topic in PHP Coding Help
i want to modify the menu permanently. i trust i pasted the complete code. -
this is the code i have for a menu. what i want to do are 2 things: first, delete the beautiful oceans option and second, move the FAQs option up and place it under Programmes and Costs. what do u suggest I do? thanx. <td width="840" height="25" bgcolor="#4C7AAB"><div id="cssMenu1" class="horizontal"> <ul class="modern_blue"> <li> <a href="index.php">About</a> <ul> <li> <a href="about/aims.php">Aims & Objectives</a> </li> <li> <a href="about/history.php">History</a> </li> <li> <a href="about/staff.php">Staff</a> </li> <li> <a href="about/interns.php">Interns</a> </li> <li> <a href="about/partners.php">Partners</a> </li> <li> <a href="about/funding.php">Funding</a> </li> <!--<li> <a href="../about/facilities.php">Facilities</a> </li>--> <li> <a href="about/travel.php">Responsible Travel</a> </li> <li> <a href="about/acknowledgements.php">Acknowledgements</a> </li> </ul> </li> <li><a href="research/">Research</a> <ul> <li> <a href="research/coralreefs/">Coral Reefs</a> <ul> <li> <a href="bleachwatch">Coral Bleaching</a> </li> </ul> <!--<li> <a href="../research/coralreefs/algae.php">Algal Dynamics</a> </li> <li> <a href="../research/coralreefs/grazing.php">Grazing & Herbivory</a> </li>--> </li> <li> <a href="research/fisheries/">Fisheries</a> <!--<ul> <li> <a href="../research/fisheries/conch.php">Conch</a> </li> <li> <a href="../research/fisheries/grouper.php">Grouper</a> </li> <li> <a href="../research/fisheries/zooplankton.php">Zooplankton</a> </li> <li> <a href="../research/fisheries/lobster.php">Spawning Aggregations</a> </li> </ul>--> </li> <li> <a href="research/megafauna/">Megafauna</a> <ul> <li> <a href="research/megafauna/whalesharks.php">Whale Sharks</a> </li> <li> <a href="research/megafauna/cetaceans.php">Cetaceans</a> </li> <!--<li> <a href="../research/megafauna/sightings.php">Sightings</a> </li><--> </ul> </li> <li> <a href="research/islandecology.php">Island Ecology</a> </li> <li> <a href="research/coconuts.php">Coconuts</a> </li> <li> <a href="research/mangroves/">Mangroves</a> </li> <li> <a href="research/seagrass/">Seagrass</a> </li> <li> <a href="research/projects.php">Project Proposals</a> </li> </ul> </li> <li> <a href="volunteer/">Volunteer</a> <ul> <li> <a href="volunteer/programme.php">Programmes & Costs</a> </li> <li> <a href="volunteer/internships.php">Internships</a> </li> <!--<li> <a href="../volunteer/learning.php">Key Areas of Learning</a> </li>--> <li> <a href="volunteer/beautifuloceans.php">Beautiful Oceans</a> </li> <li> <a href="volunteer/blog.php">Blog</a> </li> <li> <a href="volunteer/faq.php">FAQ</a> </li> <!--<li> <a href="../volunteer/proposals.php">Projects & Proposals</a> </li>--> </ul> </li> <li> <a href="community/">Community</a> <ul> <li> <a href="community/education.php">Education</a> </li> <li> <a href="community/socioeconomic.php">Socioeconomics</a> </li> <li> <a href="community/traditional.php">Traditional Knowledge</a> </li> </ul> </li> <li> <a href="ecology/">Ecology</a> <ul> <li> <a href="ecology/coralreefs/">Coral Reefs</a> <!--<ul> <li> <a href="../ecology/coralreefs/phaseshifts.php">Phase Shifts</a> </li> <li> <a href="../ecology/coralreefs/herbivory.php">Herbivory</a> </li> <li> <a href="../ecology/coralreefs/algae.php">Algal Dynamics</a> </li> <li> <a href="../ecology/coralreefs/bleaching.php">Coral Bleaching</a> </li> <li> <a href="../ecology/coralreefs/disease.php">Coral Disease</a> </li> </ul>--> </li> <li> <a href="ecology/seagrass/">Seagrass</a></li> <li> <a href="ecology/mangroves/">Mangroves</a></li> <li> <a href="ecology/connectivity/">Connectivity</a></li> <li> <a href="ecology/whalesharks/index.php">Whale Sharks</a></li> <li> <a href="ecology/cetaceans/index.php">Cetaceans</a> <!--<ul> <li> <a href="../ecology/cetaceans/spinners.php">Spinner Dolphins</a> </li> <li> <a href="../ecology/cetaceans/bottlenose.php">Bottlenose Dolphins</a> </li> <li> <a href="../ecology/cetaceans/roughtooth.php">Rough-tooth Dolphins</a> </li> <li> <a href="../ecology/cetaceans/orcas.php">Orcas</a> </li> <li> <a href="../ecology/cetaceans/pilotwhales.php">Pilot Whales</a> </li> </ul>--> </li> </ul> </li> <li> <a href="downloads/">Downloads</a> <ul> <li> <a href="downloads/documents.php">Documents</a> </li> <li> <a href="downloads/wallpapers.php">Wallpapers</a> </li> </ul> </li> <li> <a href="links/">Links</a> </li> <li> <a href="utila/">Utila</a> </li> <li> <a href="news/">News</a> </li> <li> <a href="contact/">Contact</a> </li> </ul> <br /> <script type="text/javascript"> <!-- var obj_cssMenu1 = new CSSMenu("cssMenu1"); obj_cssMenu1.setTimeouts(400, 200, 800); obj_cssMenu1.setSubMenuOffset(0, 1, -10, 5); obj_cssMenu1.setHighliteCurrent(true); obj_cssMenu1.setAnimation('slide'); obj_cssMenu1.show(); //--> </script> </div> </td> <td width="3" bgcolor="#4C7AAB"> </td> <td width="7"> </td> </tr> <tr> <td height="1"></td> <td height="7" colspan="2"></td> </tr> </table></td> </tr> <tr>