how to detect fan of a facebook page

prepare yourself for zce exam

how to send notifications and emails

attach application

alternative way of assigning html in php

method chaining in php5

My New Blog: http://blog.thinkdiff.net/

I have moved from here to my new blog: http://blog.thinkdiff.net/

P.s: I will not maintain or update anything in this blog anymore. From today, it’s deprecated!

I’m the winner of Innovation Award December 2008 in phpclasses.org

Thanks Everyone, for giving vote to my class in PHPClasses.org.

I’m very happy to see that, I’m the winner of Innovation Award December 2008 in phpclasses.org. Here is the result

http://www.phpclasses.org/winners/winner

Eclipse vs NetBeans IDE for php, css, html, javascript

I’ve used 4 IDEs for php based web application development. In my old laptop, I used notepad++ to write php, html, javascript, css code. notepad++ is a very light weight IDE and takes less resources.

**notepad++ IDE is best if your laptop/pc’s configuaration is old.

Read the rest of this entry »

MySQL – NULL vs ” vs ‘NULL’

Today, in one of my project I’ve to check empty fields.

The field name is: answer it’s type is TEXT and Default value is NULL

In my SQL query I was checked at first answer != NULL (if the answer is not null, i.e if the answer is not empty), But this was not showing the correct result.

Then I changed it to answer != ” ( i.e ” means empty string) then it showed the correct result.
Then I test with this answer != ‘NULL’, and it also showed the correct result.