Web Development Starts Here…

Store Unicode in MySQL

Posted by on Jan 30, 2012 in MySql | 1 comment

Store Unicode in MySQL

This article will be useful when you are dealing with the multilingual site with database drivven content. While dealing with multilingual website you may have faced the problem of data is not being either saved or retrieved properly.

So what could be the reason for this? The reason is, you have not set proper Character set and Collation for the database and tables.

Read More

Change MySQL Database Collation and Character Set

Posted by on Jan 30, 2012 in MySql | 0 comments

Change MySQL Database Collation and Character Set

This article is about to explain how you can manage database collation and character set of your database. If you are working on website which covers only one language which is english then you may not worry about these stuff.

But If you are dealing with the multilinguag website which includes various languages (chinese, hindi, gujarati, etc.) then you MUST need to take care of this stuff.

Read More

PHP Magic Constants Explained

Posted by on Jan 27, 2012 in Code Snippet, PHP | 0 comments

PHP Magic Constants Explained

Like PHP Magic Methods we have number of Constants defined in PHP. PHP team has declared 8 of the constants as Magic Constants.

These constants generally starts and ends with __ (double underscore).

Read More

Why We Use Memcache for PHP Sessions?

Posted by on Jan 26, 2012 in Caching, PHP | 2 comments

Why We Use Memcache for PHP Sessions?

Few Days back I have posted about storing the PHP Session in MemCache Server. Before this article I have also written about setting up PHP Session Path. With this article you should be able to instruct PHP to set your session on specific location defined by you.

On my article about storing session in MemCache, One of the reader had asked thay “Why should We store Session in Memcahce?“. So this is the article to answer this question.

Read More

WordPress Theme Files Execution Hierarchy

Posted by on Jan 25, 2012 in Wordpress | 0 comments

WordPress Theme Files Execution Hierarchy

As you know I also write for the wp tuts site which is great resource for the wordpress development. Yesterday they have published my one of the article for very useful infomation in wordpress theme development.

Here are some excepts from that article.

Read More