Toggen Blog

Tech tips

Articles

Latest

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...

Vietnam

Just some links I have posted for later reading http://www.haivenu-vietnam.com/traveltips-how.htm http://www.sapaadventure.com/traveller_reviews/Do_not_miss_it.html  

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...