hello.
i need help.
im trying to pass a variable via url and its not quite working right.
heres my code:
THE FILE PASSING THE VARIABLE:
<a href="categorypages/results.php?Pitemnum='test'">barware</a></br>
im not sure...but ... i htink its worth mentioning that the code above is not within the php tags.
HERES THE FILE RECIEVING:
<?
session_start();
header ("Cache control: private"); //IE fix
echo $Pitemnum;
?>
hers what im getting as output
\'test\'
whats up with that???? where did the slashes and apostrophes come from???
thanks in advance.
ron