Hi there,
I have links that shows in the URL something like this:
script.php?action=1&page=1
Now I'm introducing another variable added on another link,
so I'll get something like:
script.php?action=1&page=1&offset=1
How can I achieve this? by using http_get_vars? Please give an example, thanks!
I tried this:
print"<a href=\"$HTTP_GET_VARS&offset=$newoffset\">Test</a>\n";
and all I get for the link is http://domain.com/&offset=1
non of the parameters were passed (script.php?action=1&page=1)
btw, I have <?php_track_vars?> on the top of the script.
Am I using http_get_vars wrong?
Thanks for you time!