Posted by Rossz on 10/24/05 23:15
Doug Eilertson wrote:
> I have seen ? used on url's. What does it mean and what is it's usage? I
> have two books on php and they don't mention diddly squat about it.
It's not a php specific thing. It's a web thing. Everything after the ?
are parameters to be passed to the process, for example (a very bad
example!!):
www.http://www.domain.com/login.php?username=dumb&password=letmein
This passes username "dumb" and password "letmein" to login.php. How
login.php uses them is up to the script (using $_GET[] to retrieve the
parameters).
--
Rossz
God kills a kitten each time someone uses Internet Explorer
Navigation:
[Reply to this message]
|