it works on my lycos webspace ...
$PHP_SELF
Moderator: General Moderators
- Sevengraff
- Forum Contributor
- Posts: 232
- Joined: Thu Apr 25, 2002 9:34 pm
- Location: California USA
- Contact:
ok that worked
now i got URLs like:
http://localhost/test/string3.php?strin ... mit=Submit
this also doesn't work on mylocalhost...
now i got URLs like:
http://localhost/test/string3.php?strin ... mit=Submit
this also doesn't work on mylocalhost...
- Sevengraff
- Forum Contributor
- Posts: 232
- Joined: Thu Apr 25, 2002 9:34 pm
- Location: California USA
- Contact:
To get those variables you need to use $_GET:
Code: Select all
echo $_GET['stringy']; // thomas
echo $_GET['Submit']; // Submit