I am echoing the following code:
echo "page.php?var=" . $var . "&#" . $var2;
but it comes out like this is the query string:
page.php?var=thevar£
Any ideas?
Tell us what $var and $var2 are supposed to contain. It could make a very big difference.
If you are using # as an anchor tag, then remove the &... otherwise, let us know what the variable values are supposed to be.
Removing the & fixed it, thanks a lot!