IT Tips

Access

Blog History

A WORKING MYSQL QUERY SELF TABLE JOIN

I have a table holding the names of `items` to be loaned out mysql> select * from items; +----+-------+ | id | name | +----+-------+ | 1 | item1 | | 2 | item2 | | 3 | item3 | | 4 | item4 | | 5 | item5 | +----+-------+ 5 rows in set (0.00 sec) I have another...

read more

PHP is Sometimes Insensitive

I have been trying to learn CakePHP which is a Model View Controller PHP development framework. But in the process I'm having to learn PHP and have discovered some interesting stuff. My first ow wow that's interesting moment was that class and function names are...

read more