is there away in php to add on to an existing url string?
thanks
Yes, you simply append the information when you print the string.
Other than that, you'll have to be more clear in your question.
for example, if i was at www.mydomain.com/?d=5 and i wanted to add a "&blah=fluff" to the end of that when a user clicked on a link, how would i do that without typing out "<a href="?d=5&blah=fluff">" for the source code.
btw .. im a complete newb 🙂
One of these listed might help: http://www.php.net/manual/en/reserved.variables.php
In particular, the ?name=value&name2=value2 portion is known as the query string.
o cool, thnx