Mysql JOIN types

Considering the fact I'm not growing any younger and start forgetting things, here's a very short hands on self reminder article about mysql join types.

Apache + Php + Mysql on Windows XP

A quick guide of installing apache web server, php and mysql on windows xp and making them work together. I've written this because I have recently become frustrated when installing a new machine and couldn't get this to work from the first try.

Div Over Flash II

Last time I discussed about displaying a <div> element over a SWF object and correctly handle the order of the events. Having the div displayed over the SWF my next step was to catch the OnMouseDown event of the div element and handle it by my own ( think of catching...

Div Over Flash

Let's say you want to display a <div> element over a swf and take over the events like onmousedown and such ( think popups ). How do you proceed ? Well, normally you would remember the z-index css attribute and assign a lower z-index to the swf. <div style="z-index: 1;"> <object style="z-index:...