color red in the url
how do i have if a ?color=red in the url make it so it only executes < ?php echo " $tex “;
Tuu: check $_GET['color']
i know
what funcution could i use to echo wee in http://www.1bppbird.net/index.php?page=wee
with a link like http://domain.com/wee.php?tex=echothis how do i echo with php “echo this”
tuu, echo ““;
yea i figured that out
if (isset($_GET['color'])) ? echo ““. $tex .”“;
$_GET['color'
damnit I keep doing ?
ugh.
if (isset($_GET['color'])) { echo ““. $tex .”“; }