namespacing the wikipedia tutorial stuff

This commit is contained in:
Dan Buch
2011-01-02 23:22:12 -05:00
parent 43765f44ce
commit 30a56d237f
131 changed files with 2 additions and 8 deletions

View File

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