Jump to content

form generates blank email, now that I'm on a new hosting service


machepap

Recommended Posts

Hello,

 

Oh boy am I hoping someone can help me.

 

I barely know what I'm doing with PHP and cut and pasted code from an existing site into a redesign, managed to get it to work, that is, until my client decided to change servers (to Verio). So far, I've gotten the page to look right (it didn't at first) but, according to my client, when someone fills out the form he receives the email - but it is blank (not sure if he gets a totally blank message or just nothing filled into the form). I've tried making a test file with my own email address, but I'm not even receiving the test forms that I fill out! I don't know where to begin to fix this and would appreciate any help or advice!

 

Here is the form (I'm testing "Step 1") :

 

http://199.237.206.235/reservations.php

 

which directs to this page:

 

http://199.237.206.235/reserv-1.php

 

Here's my test version (not sure why it won't send anything to me:

 

http://199.237.206.235/reservations-test.php

 

which directs to:

 

http://199.237.206.235/reserv-1-test.php

 

 

Please post your code between


tags.

 

There are a number of things to check:

 

1) Do you rely on register_globals being enabled?

 

2) Are you using short tags "<?" instead of long tags "<?php". If you are using short tags and the new hosting company doesn't have them turned on, a blank page is possible.

 

Ken

Ken,

 

thanks so much for your response!

 

Forgive me, I'm a total novice with this - I basically cut and pasted the php from a previous designer's code, deciphering what I needed to customize the code to my purposes. Since it worked at first, I thought I was good.

 

I checked - long tags are used in both documents. I don't know what register _globals is. Can you enlighten me?

 

thanks!!!

 

Amy

I just reread your message and saw that you asked me to post the code - okay here goes. I'll post for both documents. reservations.php first:

 


<?php

// genereal function

include_once(dirname(__FILE__)."/includes/generalFunctions.php");

// language

include_once(dirname(__FILE__)."/includes/language/language.php");



// get var

$languagePost = "";

if("" != $_POST["language"])

$languagePost = $_POST["language"];



loadInitSystem($languagePost);



// init skin and language

$skin = $_SESSION["config"]["skin"];

$language = $_SESSION["config"]["language"];



$section = "reservation";

?>

    


<head profile="http://www.w3.org/2005/10/profile">
<link rel="icon" 
      type="image/png" 
      href="images/fav.png" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Cabo Sailing: Sailing Charters, Mexico</title>
<meta name="description" content="Daily private and public sailing charters including snorkeling, whale watching and relaxed sunset cruises from the tip of Baja, California: beautiful Cabo San Lucas, Mexico." />
<meta name="keywords" content="cabo sail, sailing cabo san lucas, mexico, sailing charters, private sailing tours, sear of cortez, lands end, land's end, learn to sail, sailing cruises, Baja California, whale watching, scuba diving, snorkeling, sunset cruises, premium sailing charters, custom charters, sail boat mexico" />
<meta name="Robots" content="ALL">

<script type="text/javascript" src="../includes/pngfix.js"></script>

<script language="JavaScript" type="text/javascript" src="../includes/generalFunctions.js"></script>

<link href="cabosail.css" rel="stylesheet" type="text/css" />

<script type="text/javascript">

<!--



function newImage(arg) {

if (document.images) {

	rslt = new Image();

	rslt.src = arg;

	return rslt;

}

}



function changeImages() {

if (document.images && (preloadFlag == true)) {

	for (var i=0; i<changeImages.arguments.length; i+=2) {

		document[changeImages.arguments[i]].src = changeImages.arguments[i+1];

	}

}

}



var preloadFlag = false;

function preloadImages() {

if (document.images) {

	preloadFlag = true;

}

pngFix();

}



function validPage(){

valid = true;



if(valid & "" == document.getElementById("name").value){

	valid = false;

	alert("<?php echo $textLanguage[$language]["confirmName"]; ?>");

	document.getElementById("name").focus();

}

if(valid & (!document.getElementById("tourSunset").checked & !document.getElementById("tourScuba").checked & !document.getElementById("tourWhale").checked & !document.getElementById("tourSnorkel").checked)){

	valid = false;

	alert("<?php echo $textLanguage[$language]["confirmTour"]; ?>");

}

if(valid & (!document.getElementById("private").checked)&(!document.getElementById("public").checked)){

	valid = false;

	alert("<?php echo $textLanguage[$language]["confirmPrivate"]; ?>");

}

if(valid & "" == document.getElementById("date").value){

	valid = false;

	alert("<?php echo $textLanguage[$language]["confirmDate"]; ?>");

	document.getElementById("date").focus();

}

if(valid & !fct_valid_email(document.getElementById("email").value)){

	valid = false;

	alert("<?php echo $textLanguage[$language]["confirmEmail"]; ?>");

	document.getElementById("email").focus();

}



if(valid){

	document.getElementById("userAction").value = "sendReservation";

    	document.frm.action = "reserv-1.php";

    	document.frm.submit();

    }

}

function fct_valid_email(email) {

var reg = /^[a-zA-Z0-9._-]+@[a-zA-Z0-9.-]{2,}[.][a-zA-Z]{2,4}$/;

return (reg.exec(email)!=null);

}

function payOnline(){

document.paypal.submit();

}

// -->

</script>

<!--[if IE 5]>
<style type="text/css"> 
/* place css box model fixes for IE 5* in this conditional comment */
#sidebar1 { width: 100px; }
#sidebar2 { width: 190px; }
#form { width: 700px; }

#sidebar2, #sidebar1, #sidebar1-top, #sidebar-container { padding-top: 0px; }
#mainContent-wide { zoom: 1; }
/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
</style>

<![endif]-->
</head>

<body>
<div id="menubox">
<ul>
<li><a class="menu" href="index.html">HOME</a></li>
    <li><a class="menu" href="boats.html">OUR BOATS</a></li>
    <li><a class="menu" href="cruises.html">OUR CRUISES</a></li>
    <li><a class="menu" href="about.html">ABOUT US</a></li>
    <li><a class="menu" href="charters.html">PRIVATE CHARTERS</a></li>
    <li><a class="menu" href="faqs.html">FAQS</a></li>
    <li>RESERVATIONS</li>
    <li><a class="menu" href="testimonials.html">TESTIMONIALS</a></li>
    <li><a class="menu" href="photos.html">PHOTO ALBUM</a></li>
    <li><a class="menu" href="contact.html">CONTACT US</a></li>
</ul>
</div>
<div id="container">
<div id="header">
    <img src="images/titlebar.jpg" class="img-safe" alt="Cabo Sailing: Premium Sailing Charters in Cabo San Lucas Mexico" width="900" height="110" border="0" title="Cabo Sailing: Premium Sailing Charters in Cabo San Lucas Mexico"  align="top" /><img src="images/titlebar-ext.jpg" alt="Yael: CaboSailing's Custom Sailboat" title="Yael: CaboSailing's Custom Sailboat" width="307" height="73" border="0" class="img-safe" align="top" /></div>
<div id="sidebar-container">
<div id="sidebar1-top"><a href="boats.html"><img src="images/left-ourboats.jpg" alt="Check out our boats" title="Check out our boats" width="203" height="125" border="0" /></a></div>
<div id="sidebar1"><a href="cruises-sunset.html"><img src="images/left-sunset.jpg" alt="Sunset Cruises" title="Sunset Cruises" width="192" height="130" border="0" /></a>
          <a href="cruises-whale.html"><img src="images/left-whale.jpg" alt="Whale Watching" title="Whale Watching" width="192" height="141" border="0" /></a>
          <a href="cruises-sail.html"><img src="images/left-snorkel.jpg" alt="Snorkeling Tours" title="Snorkeling Tours" width="192" height="135" border="0" /></a>
          <a href="cruises-learn.html"><img src="images/left-learn.jpg" alt="Learn to Sail" width="192" height="141" border="0" title="Learn to Sail" /></a><br />
        <a href="cruises-scuba.html"><img src="images/left-scuba.jpg" alt="Scuba Diving" title="Scuba Diving" width="192" height="141" border="0" /></a>
      <p class="text"> </p >
      
      <p class="text"> </p >
    </div>
</div>
  
  <div id="mainContent-wide">
    <h1> <img src="images/reservations.gif" alt="Reservations" width="200" height="37" title="Reservations" />    </h1>
    <br>
  

<form class="form2" name="frm" method="post" action="" enctype="multipart/form-data">

<div class="form2-inner"><br>
  <p align="center" class="text"><img class="label" src="images/step1.gif" alt="Step One" width="89" height="29" align="top" longdesc="images/step1.gif"><br>
    <strong>Check
      Availability</strong></p>
  <p class="text">Please
    fill out this <strong>Reservation Inquiry</strong> Form and we will get back
    to you with prices and date confirmation.</p>
  <p align="left" class="text"><strong>Name:</strong><br>
  <input type="text" value="" name="name" id="name" class="textbox-form2">
</p>
<p align="left" class="text" ><strong>Phone number:</strong><br>
  <input type="text" value="" name="phone" id="phone" class="textbox-form2">
</p>
<p align="left" class="text" ><strong>Tour requested:               <br />
</strong>
  <input type="checkbox" id="tourSnorkel" name="tourSnorkel" value="Snorkel" class="radio"/>
  Snorkel<br />

  <input type="checkbox" id="tourSunset" name="tourSunset" value="Sunset" class="radio"/>
  Sunset<br />

  <input type="checkbox" id="tourScuba" name="tourScuba" value="Scuba diving" class="radio"/>
  Scuba diving<br />

  <input type="checkbox" id="tourWhale" name="tourWhale" value="Whale watching" class="radio"/>
  Whale watching</p>
<p align="left" class="text" ><strong><strong>Private or public:   <br>
</strong>
    <input type="radio" id="private" name="private" value="Private" class="radio"/>
  </strong>Private<strong>   
      <br>
      <input type="radio" id="public" name="public" value="Public" class="radio"/>
      </strong>Public<br />
</p>
<p align="left" class="text" ><strong>Date you plan to arrive in Cabo:</strong><br />
  <input type="text" value="" name="arrivalDate" id="arrivalDate" class="textbox-form2">
</p>

<p align="left" class="text" ><strong></strong><strong>Place where you plan to
    stay in Cabo <br>
    (+ phone number):</strong><br />
  <input type="text" value="" name="hotel2" id="hotel2" class="textbox-form2" rows=2>
</p>
<p align="left" class="text" ><strong>Date(s) Requested: </strong><br />
    <input type="text" value="" name="day" id="date" class="textbox-form2">
</p>
<p align="left" class="text" ><strong>Number of adults: </strong> 
  <input type="text" value="" name="nbAdults" id="nbAdults" class="textbox-short"> 
           <br>  
<strong>Number of children </strong>(8 and under)<strong>:</strong>
<input type="text" value="" name="nbChild" id="nbChild" class="textbox-short">
</p>

<p align="left" class="text" ><strong>Your email:<br>
</strong>
  <input type="text" value="" name="email" id="email" class="textbox-form2">
</p>
<p align="left" class="text" ><strong>Comments and Special Requests: <br>
</strong><textarea id="comments" name="comments" class="textbox-form2" rows=4></textarea>
<input type="hidden" id="userAction" name="userAction" value="">
</p>
<p align="center">
<a href="javascript:validPage();"
															onmouseover="changeImages('send', 'images/res-inq-button.gif'); return true;"

															onmouseout="changeImages('send', 'images/res-inq-button.gif'); return true;"

															onmouseup="changeImages('send', 'images/res-inq-button.gif'); return true;"><img src="images/res-inq-button.gif" alt="Send &#8250;&#8250;" name="send" border="0" align="bottom"></a>


<input type="hidden" id="userAction" name="userAction" value="">
    <br></p>
    
</div> <img src="images/form2-2-bg.gif" alt="background curve">

</form>

<div style="width:310px; float:left; clear:none; margin:0; border:0; padding:0; overflow:visible; align:top;      ">

<form class="form2-2" name="frm2-2" method="post" 
action="https://www.paypal.com/cgi-bin/webscr" >

<input type="hidden" name="cmd" value="_xclick">

<input type="hidden" name="business" value="[email protected]">

<input type="hidden" name="page_style" value="cabosail1">

<input type="hidden" name="no_shipping" value="0">

<input type="hidden" name="no_note" value="1">

<input type="hidden" name="currency_code" value="USD">

<input type="hidden" name="lc" value="MX">

<input type="hidden" name="bn" value="PP-BuyNowBF">
<br>
<div class="form2-inner">
  <p align="center" class="text"><img src="images/step2.gif" alt="Step One" class="label" width="89" height="29" align="top" longdesc="images/step2.gif"><br>
  <strong>Book Your Cruise</strong></p>
  <p align="left" class="text"><em>Please complete Step 1 to
      check availability before paying for your cruise. </em><br>
  </p>
  <p align="left" class="text">We offer <strong>3 easy booking options. </strong>Please
    choose the best one for you: </p>
  <p align="left" class="text">1) Download the credit card authorization
      form. Fill
    it out with the total amount, sign it (hand signature only) and send it as
    a scanned attachment by email. <strong><em>Please
    note:</em></strong> <em>The authorization form is for confirmation purposes
    only.We will settle the payment on the boat.</em> </p>
  <p align="center" class="text"><a href="booking-form.pdf" target="_blank"><img src="images/res-form-button.gif" alt="Download Reservation Form" border="0"></a></p>
  <p align="center" class="text"><strong>OR</strong></p>
  <p align="left" class="text"> 2) Make a secure online deposit  of
    50% of the total (private) or the total (public) in US dollars, via PayPal.
    You can also pay the total now and avoid the 5% extra charge using a credit
    card on board. </p>
    
    
<p align="center" class="text"><input type="hidden" name="on0" value="Cruise Type">
      <strong>Cruise Type:</strong>  
      <select name="os0"><option value="Sailing & Snorkeling">Sailing & Snorkeling<option value="Sunset Sailing">Sunset Sailing<option value="Scuba Dive Sail">Scuba Dive Sail<option value="Sunset Sailing">Sunset Sailing<option value="Custom Charter/Other">Custom Charter/Other</select>
    </p>

<p align="center" class="text"><input type="hidden" name="on1" value="Date">
  <strong>Date:</strong> 
  <input type="text" name="os1" class="textbox"><br><br>
  
  <input type="image" src="images/res-pay.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!"></p>

<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1"></p>


    
  <p align="center" class="text"><strong>OR</strong></p>
  <p align="left" class="text">3) Give us a call to make your reservation
    in person. Please have your credit card number close by.</p>
  <p align="center" class="text"><a href="contact.html"><img src="images/res-call.gif" alt="Contact Us" border="0" longdesc="images/res-contact.gif"></a><br>
  </p>
  </div>
  <img src="images/form2-2-bg.gif" alt="background curve">
</form>

<br>
<div class="form2-2"><br>
<div class="form2-inner">
<p align="center" class="text">
  <img src="images/step3.gif" alt="Step One" class="label" longdesc="images/step1.gif" ><br>
  <strong>Receive Email Confirmation</strong></p>
<p align="left" class="text">Once we receive your deposit or the authorization
  form, we will email you with directions to the dock and confirmation of your
  booking. <em>Please note that we charge 5% extra for credit card usage on the boat. </em></p>
<p align="center" class="text"><strong>We look forward to sailing with you!</strong></p>
</div>
<img src="images/form2-2-bg.gif" alt="background curve">
</div>
</div>
<div>

  <p align="center">              </p >
  
  <p align="center">       <img src="images/wheel.gif" alt="helm" title="helm" />       </p >
  <p align="center" class="minilinks"><a href="index.html">Home</a> : <a href="boats.html">Our Boats</a> : <a href="cruises.html">Our
        Cruises</a> : <a href="about.html">About Us</a> : <a href="charters.html">Private Charters</a><br />
        <a href="faqs.html">FAQs</a> : <a href="reservations.html">Reservations</a> :
      <a href="testimonials.html">Testimonials</a> : <a href="photos.html">Photos</a> : <a href="contact.html">Contact Us</a></p >
        <p align="center" class="minilinks">email us at: <a href="mailto:[email protected]">[email protected]</a></p >
    <p align="center"><img src="images/wheel.gif" alt="helm" title="helm" /><br />
    </p >
    <p class="keywords">keywords: cabo sail, sailing cabo san lucas, mexico,
      sailing charters, private sailing tours, sear of cortez, lands end, land's
      end, learn to sail, sailing cruises, Baja California, whale watching,
      scuba diving, snorkeling, sunset cruises, premium sailing charters, custom
    charters, sail boat mexico</p ></div>
  <!-- end #mainContent --></div>
  <!-- This clearing element should immediately follow the #mainContent div in order to force the #container div to contain all child floats --><br class="clearfloat" />
  <div id="footer">
  	<div id="footer-left">
    </div>
  <!-- end #footer --></div>
<!-- end #container --></div>



        <script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
try {
_uacct = "UA-1013774-2";
urchinTracker();
} catch(err) {}</script>  
</body>


      
</html>

 

and reserv-1.php code follows:

 


<?php



$from = "$email";

$to = "[email protected]";

$subject = "Cabosail Reservation";





$date = getdate(time());

$date = sprintf("%s %s %s %s:%s:%s", $date["mday"],$date["month"],$date["year"],$date["hours"],$date["minutes"],$date["seconds"]);

$from = "$email";

$header = "from: $name <$email>\n";

$header .= "Reply-To:$email\n";

$body .= "============================================================== \n";

$body .= "New Reservation Request sent $date \n";

$body .= "============================================================== \n";

$body .= "\n";

$body .= "CONTACT INFORMATION \n";

$body .= "		Name:     $name \n";

$body .= "		Email:    $email \n";

$body .= "		Phone:    $phone \n";

$body .= "\n";

$body .= "\n";

$body .= "RESERVATION REQUEST \n";

$body .= "		Tour:     $tourSnorkel$tourSunset$tourScuba$tourWhale  \n";

$body .= "		Type:     $private$public \n";

$body .= "		Date(s)   $day \n";

$body .= "		Adults:   $nbAdults \n";

$body .= "		Children: $nbChild \n";

$body .= "\n";

$body .= "		Hotel:    $hotel2 \n";

$body .= "		Arrival:  $arrivalDate \n";

$body .= "\n";

$body .= "\n";

$body .= "COMMENTS AND SPECIAL REQUESTS: \n";

$body .= "     $comments\n\n";

$body .= "==============================================================\n\n\n";



$header=trim($header);


mail($to, $subject, $body, $header) or die("Unable to establish connection with server. Please try again later.");







$title="reservations";

$im="home";



?>





<html><head><meta http-equiv="Content-type" content="text/html; charset=iso-8859-1">

<title>Cabo Sailing -  Premium Sailing Charters in Cabo San Lucas, Los Cabos, Baja, Mexico, charters, snorkeling, sunset cruises, whale watching, scuba diving, booking, discounts, coupons, romantic tours, custom arrange	ments.</title>

<meta name="Keywords" content="Cabo, San, Lucas, Los, Cabos, Baja, California, Sur, Mexico, Vacations, Sailing, Tours, Trip, Charters, Snorkeling, Sunset, Cruises, Whale, Watching, Scuba, Diving, Booking, Discounts, Coupons, Romantic, Tours, Coustom, Arragaments, Weddings, Paradise, Accomodation, Mi, Casa, Restaurant, Tourists, Information, Villa, Villas, Rentals, Profecional, Diver, Yael, Chica, Sail, Cabosail, Gil,">

<meta name="Description" content="We operate daily private and public saling charters that combine snorkeling, whale watching or relaxed sunset cruises.">

<meta name="Robots" content="ALL">

<link href="cabosail.css" rel="stylesheet" type="text/css" />

<!--[if IE 5]>
<style type="text/css"> 
/* place css box model fixes for IE 5* in this conditional comment */
#sidebar1 { width: 100px; }
#sidebar2 { width: 190px; }
</style>
<![endif]--><!--[if IE]>
<style type="text/css"> 
/* place css fixes for all versions of IE in this conditional comment */
#sidebar2, #sidebar1, #sidebar1-top, #sidebar-container { padding-top: 0px; }
#mainContent { zoom: 1; }
/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
</style>
<![endif]-->
</head>



<body>



<div id="menubox">
<ul>
<li><a class="menu" href="index.html">HOME</a></li>
    <li><a class="menu" href="boats.html">OUR BOATS</a></li>
    <li><a class="menu" href="cruises.html">OUR CRUISES</a></li>
    <li><a class="menu" href="about.html">ABOUT US</a></li>
    <li><a class="menu" href="charters.html">PRIVATE CHARTERS</a></li>
    <li><a class="menu" href="faqs.html">FAQS</a></li>
    <li>RESERVATIONS</li>
    <li><a class="menu" href="testimonials.html">TESTIMONIALS</a></li>
    <li><a class="menu" href="photos.html">PHOTO ALBUM</a></li>
    <li><a class="menu" href="contact.html">CONTACT US</a></li>
</ul>
</div>
<div id="container">
<div id="header">
    <img src="images/titlebar.jpg" class="img-safe" alt="Cabo Sailing: Premium Sailing Charters in Cabo San Lucas Mexico" width="900" height="110" border="0" title="Cabo Sailing: Premium Sailing Charters in Cabo San Lucas Mexico"  align="top" /><img src="images/titlebar-ext.jpg" alt="Yael: CaboSailing's Custom Sailboat" title="Yael: CaboSailing's Custom Sailboat" width="307" height="73" border="0" class="img-safe" align="top" /></div>
<div id="sidebar-container">
<div id="sidebar1-top"> <a href="boats.html"><img src="images/left-ourboats.jpg" alt="Check out our boats" title="Check out our boats" width="203" height="125" border="0" /></a>
</div>
<div id="sidebar1"><a href="cruises-sunset.html"><img src="images/left-sunset.jpg" alt="Sunset Cruises" title="Sunset Cruises" width="192" height="130" border="0" /></a>
          <a href="cruises-whale.html"><img src="images/left-whale.jpg" alt="Whale Watching" title="Whale Watching" width="192" height="141" border="0" /></a>
          <a href="Snorkeling Tours"><img src="images/left-snorkel.jpg" alt="Snorkeling Tours" title="Snorkeling Tours" width="192" height="135" border="0" /></a>
          <a href="cruises-learn.html"><img src="images/left-learn.jpg" alt="Learn to Sail" width="192" height="141" border="0" title="Learn to Sail" /></a><br />
        <a href="cruises-scuba.html"><img src="images/left-scuba.jpg" alt="Scuba Diving" title="Scuba Diving" width="192" height="141" border="0" /></a>
      <p class="text"> </p >
    </div>
</div>
  
  <div id="mainContent-wide">
    <h1> </h1>
    <h1>	<img src="images/thankyou.gif" alt="Reservations" width="200" height="37" title="Reservations" />    </h1>
    <p align="center" class="text"> </p>
<p align="center" class="text"><strong>Your inquiry has been sent. We will be contacting you shortly.</strong></p>
<p align="center" class="text"> </p>
<p align="center" class="text"><a href="index.html">Continue browsing the site >></a></p>
<p> </p>
<p> </p>
<p align="center"><img src="images/wheel.gif" alt="helm" title="helm" /></p >
    <p align="center" class="minilinks"><a href="index.html">Home</a> : <a href="boats.html">Our Boats</a> : <a href="cruises.html">Our
        Cruises</a> : <a href="about.html">About Us</a> : <a href="charters.html">Private Charters</a><br />
        <a href="faqs.html">FAQs</a> : <a href="reservations.php">Reservations</a> :
      <a href="testimonials.html">Testimonials</a> : <a href="photos.html">Photos</a> : <a href="contact.html">Contact Us</a></p >
    <p align="center" class="minilinks">email us at: <a href="mailto:[email protected]">[email protected]</a></p >
    <p align="center"><img src="images/wheel.gif" alt="helm" title="helm" /><br />
    </p >
    <p class="keywords">keywords: cabo sail, sailing cabo san lucas, mexico,
      sailing charters, private sailing tours, sear of cortez, lands end, land's
      end, learn to sail, sailing cruises, Baja California, whale watching,
      scuba diving, snorkeling, sunset cruises, premium sailing charters, custom
      charters, sail boat mexico</p >
  <!-- end #mainContent --></div>
<!-- This clearing element should immediately follow the #mainContent div in order to force the #container div to contain all child floats --><br class="clearfloat" />
  <div id="footer">
  	<div id="footer-left">
    </div>
  <!-- end #footer --></div>
<!-- end #container --></div>






        <script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
try {
_uacct = "UA-1013774-2";
urchinTracker();
} catch(err) {}</script>  
</body>
      </html>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.