Quite possibly THE most useful site(s) for cross browser testing (and fixing)
Nuff said...
Actually while I'm on the topic (mainly of IE being an idiot)
http://code.google.com/p/ie7-js/
In addition, for up to date browser usage stats (and in theory the most correct stats):
Handling CType Data With SimpleXML in PHP
If you're new to SimpleXML then the output and representation of complex XML data produced by the library can be daunting and sometimes confusing, but once you're used to it, SimpleXML is a massively useful tool for processing XML information.
When debugging other people's implementations of simpleXML however, one of the biggest issues I come across time and again is the apparent loss of CType data from the processed feed.
Luckily this is very easily remedied, but not well documented so here's how to deal with it.
PHP 5.1.0 introduced the options parameter to functions such as simplexml_load_string() which allows you to specify additional paramters to Libxml the underlying library PHP uses to interpret XML.
The default Libxml setting ignores any data in CType blocks, but you can override this behaviour by passing the LIBXML_NOCDATA option to the function.
In other words, in cases where you might usually do this to load some xml data and not find the CType fields in the resulting object:
$xml = simplexml_load_string($feed);
Doing this instead, will allow the CType fields to be added to the object and used in your scripts where you need to
$xml = simplexml_load_string($feed, NULL, LIBXML_NOCDATA);
Unfortunately the options parameter is the 3rd in the list, and 9 times out of 10 the second option (which is the name that's given to the class containing the parsed xml) doesn't need to be changed/overridden so I personally choose to pass NULL in as the second option, though you can enter whatever you like here.
It's as easy as that - I hope you found this note useful
Styling the The TinyMCE Text Area
They guys who produce TinyMCE suggest, when initialising the editor, that you set the content_css parameter to be the url to your site’s CSS, so that the content you type into the text area is styled in the same way as the rest of your site.
This is a great idea and works very well, but a lot of CSS layouts make use of various text positioning options which don’t really apply when translated to a wysiwyg editor, for example making the default alignment centred with no padding.
Thankfully you can get around all of this quite easily and add further custom styling to your editor’s textarea by adding the .mceContentBody style to the end of your site’s CSS file and specifying any further layout options in that.
For example the following css tells the editor in my app to always ensure the text alignment is left justified by default and give a 10 pixel padding to the textarea the editor’s being applied to so that the text that will be input by the user doesn’t squash up against any particular border of the text area itself:
.mceContentBody {
text-align: left;
padding: 10px;
}
Nice and simple really but not so easy to find quickly when searching on Google so I hope this helps someone else out there too!
Agggh Quota Exceeded
Apparently though I've only used 3,341.70 MB of my 20,000.00 MB webspace I have hit my file quota limit of 262,144 files.
And what notification did I get - none!
Just a load of head scratching as to why my FTP uplaods were failing...
Looks like I'm gonna have to delete some stuff...
Cheers 1and1...


Also Find Me On