Posts: 3,621
Name: Thierry
Location: I'm the uber Spaminator !
|
[QUOTE][erm..., just look at the php at the end of the links urls...  /QUOTE]
Meh.. Talk about blindness....
In that case, you can refer each elements into the $_GET array.
If you have a link that is http://www.whatever.com/index.php?confirm=1&go=page2, then you will have an $_GET array in this form:
PHP Code:
$_GET['confirm']='1'; $_GET['go']='page2';
You can iterate over it with a foreach statement like PixelKing stated:
PHP Code:
foreach($_GET as $key=>$value){ echo "The value of $key is $value<br/>"; }
__________________
Only a biker knows why a dog sticks his head out the window.
|