everytime I have code like this:
$var = "c++, C#";
nextPage?tmp=$var
and try to use the var in something like this:
print $tmp;
it strips away the # and ++ signs, is there away to keep the characters?
Try this:
<? $var = "c++, C#"; $var = urlencode($var); ?>
<a href="nextPage.php?tmp=<?=$var?>">Go next</a>
// on the page nextPage.php
echo $tmp;
should produce what you want.