|
index.php?id=1&act=act&this=that
The parameters are first taken from the URL string by PHP, and it is set off by the "?"
So the above example would be digested by PHP as: id=1&act=act&this=that
Then it is split into key=value pairs by the "&"
This would become:
id=1
act=act
this=that
Then each pair is split into key => value array into the $_GET array by the "="
This would result in the following array using print_r($_GET):
Array {
[id] => 1,
[act] => act,
[this] => that
}
__________________
<mgraphic /> - I don't have a solution but I admire the problem.
|