Quote:
Originally Posted by Simon
Aside from that you just have to accept that you have those pieces of code that don't validate, but you know your page is good code except for those bits.
|
Yeah, as long as my page shows up properly, if a link list has a recip table that won't validate, the burden is on him/her.
Quote:
Originally Posted by RamCharger
Be careful and look in your httpd.conf at what charset you have it set to.
|
Where do I find httpd.conf?
Quote:
Originally Posted by RamCharger
Also, about iso-8859-1: be careful when you compose pages that you give some thought if you hope to maintain compatibility with it. iso-8859-1 does have some special chars which you might overlook when writing you html with a text editor (I know I have). These chars are: & which needs to be & in your html, ' needs to be " and a few others that you need to be aware of. If you're using php for text output you can use htmlspecialchars ( http://us2.php.net/manual/en/functio...ecialchars.php) to take care of the encoding for you.
|
I always use & and other special characters if I want that character to actually show up on the page so I think I'm OK with that.