This blog will contain non-technical, fun and personal posts. All my technical posts will be posted on SMD's blog, http://www.smd.com.my. Looking forward to see you there! :-)

Why Dojo?

Alex has updated the why dojo article. It’s a great article to read for everyone wanting to know what it does and why and also how it compares to the other popular toolkits/ajax framework.
The why dojo article is here.

MySQL Case Sensitive On Linux

A good rule to remember. MySQL are case sensitive only table and database identifiers and only on platforms with case-sensitive filenames (Linux/Unix). So, If you’re developing a system. Do remember. MySQL are case sensitive. An example:
Bad Practice:
select * from Project
Good Practice:
SELECT * FROM project
Ref: Identifier Case Sensitive

Inspekt Build Available

Yesteday, I presented a full-day tutorial on SQL Injection & Session Hijacking In PHP Programming which seems to have been well received by those who attended. And today, I would like to present to you a new Inspekt Build available to be downloaded at Google Code.
What is Inspekt?
Inspekt acts as a sort of ‘firewall’ API [...]

Script Type Or Language?

I’ve been asking myself, what is the difference between this tag:
<script language=”javascript”>
and this tag:
<script type=”text/javascript”>
After doing some googling, I found this documentation.
The “language” specifies the scripting language of the contents of this element. Its value is an identifier for the language, but since these identifiers are not standard, this attribute has been deprecated in favor [...]

PHP Loves JSON

JSON is a format for communication between the server-side (PHP, JSP, ASP, etc…) and the client-side (javascript). The magic of it is that the response from the server-side can be easily converted to an object via the use of the eval() function. eval() (can be “evil”) is a function that gives you the possibility to [...]