In our previous post, we have discussed free PHP eCommerce framework, in which explained about PHP eCommerce frameworks. Here in this post we will discuss about PHP Content Management Systems(CMS) so that readers who don’t have strong PHP knowledge can easily create their website using free and open source CMS. Content Management System, or CMS is […]
Commonly used PHP functions
PHP has very large library of built-in functions which are available to use. Here in this post, I have listed some most used PHP functions which will surely help you.
Zend Framework Interview Questions and Answers
Zend Framework is the most popular framework developed using PHP. It’s fully object oriented web application framework with Model View Controller (MVC) pattern. There are many small to large scale of web applications are developed using Zend frameworks. Due to this, there are always demand of PHP programmers who has expertise in Zend Frameworks. So […]
PHP – Model View Controller (MVC)
MVC (Model-View-Controller) is a pattern that is used in software development. The basic idea behind MVC is to separate business logic from its presentation layer. MVC is the most used pattern in today’s web development. This pattern firstly used in Smalltalk and later adopted and popularized by Java. At present there are more than a […]
Mysql Index Advantages and Disadvantages
Indexing is an important feature of MySQL. It supports different types of indexes like primary key index, unique index, normal index and full-text index. Indexes help to speed up the retrieval of data from MySQL database server. When retrieving the data from a database table, MySQL first checks whether the index of table exists; If yes […]