Ive been tidying up the code in my arcade site, and the validator is stuck on this one else { echo "<a href=./index.php?action=category&id=$id&page=1&order2=game_name&sby=ASC>Next Page --></a>"; } } Code (markup): The error i get is: It highlights the question mark i have bolded. Ive found solutions to various other versions that arent using "echo" but straight html. Its got something to do with place " " in the correct location, but how do I do it? Any help appreciated. Nerz.
Try using single quotes like: else { echo "<a href='./index.php?action=category&id=$id&page=1&order2=game_name&sby=ASC'>Next Page --></a>"; } } Code (markup):