I have this:
browse_cat.php?cat_gr='Mopeds & Traktors'">
The browse_cat.php contains this to fetch the above "category":
$cat=$_GET['cat_gr'];
echo $cat;
This echo outputs the first word only "Mopeds". It wont change if I replace the & with &.
What is the problem here?
The adress bar when I enter browse_cat.php shows:
browse_cat.php?cat_gr='Mopeds%20&%20Traktors'
Thanks