The slides for the Caching Systems talk are now available online, they can be downloaded here.

The slides from my talk on PHP Security are now up and can be found in PDF form at the bottom on my talks page. The talk was unfortunately rather short and I had to rush through a number of things, so my apologies if things felt a bit rushed, but I think the key points were hit and as far as an overall overview it was pretty good. Those interested in hearing more about security can review my slides from previous conferences that go into a bit more detail as far as the various security issues.

The slides from the PHP & Performance tutorial I've given during the Zend's PHP Conference are now up, you can find them at the bottom of my talks page here. To all the people who have gotten up really early in the morning, thanks for attending and hopefully you've found something interesting for yourself during the talk. [b]Update:[/b] Rasmus has kindly pointed out that stripping while drastically reducing the size (basic binary is about 3x smaller), does not actually impact the startup speed in any measurable speed. A quick test with php-cgi from latest CVS appears to confirm this, so unless you want to save disk space at expense of debug symbols, do not strip! Thanks Rasmus.

As you may know PHP 5.2.0 will feature a very capable filtering extension that can be used to easily validate your input via a number of rules which you can find here. What I am interested in hearing is are there any other common types of data collected by PHP forms that would be worth while adding filters for into the extension. My own suggestions would be the phone (US/EU formats) and postal/zip code validators. So let's hear what you have to say ;-) Brief Disclaimer: Consider this an RFC of sorts, the suggestions if widely supported may not get integrated and any additions will need to have the implicit agreement of all the filter extension developers before being added.

Unless you've been living under a rock you probably know that Firefox 2.0 was released today. Although, it seems that someone one on the Mozilla's team is definitely living in a cavern since the official siteis still linking to FireFox 1.5. From a developer perspective Firefox 2.0 introduces a number of interesting features, which are explained in detail on the Firefox 2 for developers site . The thing that attracted my attention was the support for OpenSearch standard pioneered by A9 (Amazon), something IE7 also supports. The nature of this feature allows you to "push" your own site's search into the browser's search list for the searchbox, thereby providing a neat and consistent way to find content for the user. This is surprisingly simple to do as you can tell from the excerpts taken from FUDforum code (yes, the next release will have support for this feature) which you can find at the bottom. The other very handy addition to Firefox (something Safari had for quite some time) is the integr...