Hi . i got this error generated for all values of a combo drop down box The box generates values through php I cant understand what it means:// Line 123, Column 117: an attribute value must be a literal unless it contains only name characters …">10800 Zombies</option><option value=\"http://www.domain.com/racing/play-3… ✉ You have used a character that is not considered a "name character" in an attribute value. Which characters are considered "name characters" varies between the different document types, but a good rule of thumb is that unless the value contains only lower or upper case letters in the range a-z you must put quotation marks around the value. In fact, unless you have extreme file size requirements it is a very very good idea to always put quote marks around your attribute values. It is never wrong to do so, and very often it is absolutely necessary. What does it want me to fix? regards the code that generate it is echo addslashes('<option value="'.$Link.'">'.$Name.'</option>') The issue i assume is the slash generated in the code that shouldnt have been there regards