messing around with $_GET

This commit is contained in:
Dan Buch 2010-12-28 23:25:41 -05:00
parent 168d7edcf3
commit cb0c3e3f4b

10
docroot/html/webvars.php Normal file
View File

@ -0,0 +1,10 @@
<?php
$dogs = $_GET['dogs'];
if ($dogs) {
print "\$_GET['dogs']=" . $dogs;
} else {
print "no dogs for you";
}
?>