how to detect fan of a facebook page
Posted using ShareThis
how to detect fan of a facebook page
Posted using ShareThis
how to send notifications and emails
Posted using ShareThis
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!
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
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.
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.