if I have a variable
$var="cats & dogs";
and I export this variable using get
eg
<a href='test.php?var=$var'>link</a>
it breaks ... because the link becomes
test.php?var=cats & dogs
(the "&" breaks up the get variable)
How can I overcome this?
Thanks