Hi there, Can anyone tell me the php code i would use for instance.. My url is http://mysite.com/index.php If i make that url http://mysite.com/index.php?&name=djmack can get that page somehow to say Hello djmack? thanks
FYI if you need to use the name in several locations (or if you use a number at some point for calculations), you can declare it as a variable then echo out the variable instead of calling _GET all the time: $var1 = $_GET['name']; echo 'Hello $var1'; Code (markup):