Awesome
That was it! I know lot's of people complain on here Jason, it's stressful working on deadlines, but your programs have taught me some awesome coding - done alot of the hard labor, but I had to put some elbow grease in to figure it out. Thanks man, I've learned alot.
BTW - if you are reading this post and have this same problem make sure to delete any double spaces in between lines of code.
From this:
<?php
if (!session_id()) session_start();
if($_SERVER["REQUEST_METHOD"] == "POST") {
$_SESSION["eCartCheckoutForm_firstname"] = "".((isset($_POST["firstname"]))?
$_POST["firstname"]:"") ."";
}
?>
<?php
To This:
<?php
if (!session_id()) session_start();
if($_SERVER["REQUEST_METHOD"] == "POST") {
$_SESSION["eCartCheckoutForm_firstname"] = "".((isset($_POST["firstname"]))?$_POST["firstname"]:"") ."";
}
?>
<?php