[eluser]jedd[/eluser]
[quote author="xwero" date="1236283732"]
I'm blind for the function name styles, i guess php functions made me numb for style

[/quote]
A beautiful observation!
I dislike camelcase, particularly with the exception for the first character. Exceptions are bothersome things. I find underscores far more readable, particularly on a small display. I dislike CI's indenting style, and stick with mine throughout my own code. CI's style guide eschews short tags, and I can entirely agree - I think it fits under the general heading of 'stick with
one way of doing each thing in your code'. The only rationale I've heard for it (much like templating) is that it makes it easier for 'creative types' to deal with the pseudo-HTML they might have to look at, and there's no creative types around here.
I've always felt
true looks better than
TRUE but that might come down to having a colourful IDE. (In vi, f.e., I could see the benefit of uppercasing true, false and null.) I like their rationale for using
OR rather than
|| but often forget to do this (old habits etc). I do tend to force multiple conditionals over multiple lines, which improves readability anyway. I only discovered === about 18 months ago, and try to use it where appropriate, but I got into a habit of casting things I wasn't sure about (probably a bad habit) a while back, so === isn't so useful. And I
really dislike using plurals for database table names (they tacitly encourage this behaviour). I've always used tabs for indenting so that one was easy, as was saving with unix linebreaks (I made the right decision in 1995 after all!

.
I'm unsure about always using ' to quote strings, mostly due to several years of using ", and because with a ' I find there are more occasions where I need escape things (strings more often contain ' than a "). Plus I never use a $var within a quote (' or ") - it seems to me that . is cheap and far more readable - so no advantages for me there.