Reputation: 3268
Take this for example: <a href="manageCart.php?action=remove&id=49">
When validated, you will get this result:
Line 26, Column 802: & did not start a character reference. (& probably should have been escaped as &.)
But this is not content, so the & is necessary. What is done to make it valid html?
Upvotes: 1
Views: 921
Reputation: 7765
validaters usually want &
instead of just the &
sign. when you click on the link it will still change it to &
in the browsers url
Upvotes: 0
Reputation: 78540
<a href="manageCart.php?action=remove&id=49">
Use &
Upvotes: 6