PHP interesse |
|
Ik heb
$bottomon="hallo";
$bottomoff="bla bla etc";
if($_GET['a'] == display/townmap) { echo $tpl->assign("bottomon", ($bottomon)); }
else { echo $tpl->assign("bottomoff", ($bottomoff));}
$bottomon="hallo"; $bottomoff="bla bla etc"; if($_GET['a'] == display /townmap ) { echo $tpl->assign("bottomon", ($bottomon)); } else { echo $tpl->assign("bottomoff", ($bottomoff));}
De bedoeling is dat als het url index.php?a=display/townmap is de tekst HALLO wordt getoond. Op ieder overig url de bottomoff tekst.
Echter krijg ik nu op ieder url de bottomoff tekst te zien ook als het url wel: index.php?a=display/townmap is
Iemand enig idee wat ik fout doe?
|