Stephen Jennings - 2013-11-05 05:33:52
The top header location works...the next one doesn't...Note the echo statement and I have var_dump() for status of variables...I have checked all my paths a dozen times, like I said the top one works...this is used on my form processing page to check validation a rare circumstance that I don't believe will happen often...but i want to make sure I cover it.
I cannot get the second location to work. I am not outputing anything before it and I have checked with echo statement many times. Any pointers..thanks
<?php
if (!($paid == "129" || $paid == "149")) {
header("Location:https://p10.secure.hostingprod.com/@vertais.com/ssl/bb/noFee.htm");
}4
if (empty($ver))
{
if($paid == "129")
{
//echo("you are in the second if");
header("Location:https://p10.secure.hostingprod.com/@vertais.com/ssl/bb/noVer.htm");
}
}
?>