probably an easy question, how do i link someone in php?
Posted: Mon Jan 05, 2009 11:31 am
my current code is this:
if($page=="SSL")
{header( "Location: https://www.e-junkie.com/ecom/gb.php?c= ... 8831&ejc=2" );}
else if ($page=="SSXL")
{header( "Location: https://www.e-junkie.com/ecom/gb.php?c= ... 8831&ejc=2"); }
else
{header( "Location: https://www.e-junkie.com/ecom/gb.php?c= ... 8831&ejc=2"); }
everything works, but i want to make it so the links open in a new window (target="_blank") not sure how i would do that, could anyone help??
if($page=="SSL")
{header( "Location: https://www.e-junkie.com/ecom/gb.php?c= ... 8831&ejc=2" );}
else if ($page=="SSXL")
{header( "Location: https://www.e-junkie.com/ecom/gb.php?c= ... 8831&ejc=2"); }
else
{header( "Location: https://www.e-junkie.com/ecom/gb.php?c= ... 8831&ejc=2"); }
everything works, but i want to make it so the links open in a new window (target="_blank") not sure how i would do that, could anyone help??