|
Hi all, I don't know much about php and need some advice on how to put in target="_blank" in this piece of code.
I've figured out that the category 77 is for outside links, but everytime I insert target blank I kill my page.
Could someone place the target="_blank" in this so I can see what I'm doing wrong.
Thank you very much.
if ($gamelocation == 1 || $filetype == 77)
$gamefile = $gamefile;
else
$gamefile = $base_url."games/files/".$gamefile;
if ($filetype != 77){
if ($hotlink == 1 && $rewrite ==1 && $filetype < 3)
$gamefile = $base_url."content/".$gameid."/".$_SESSION['playcode'];
elseif ($hotlink == 1 && $rewrite ==0)
$gamefile = $base_url."viewgame.php?gameid=".$gameid."&code=". $_SESSION['playcode'];
}
|