PHP has built-in Curl library that let’s you communicate with other servers. The Curl library is enabled by installing cUrl extension in PHP.INI. You just need to uncomment “extension=php_curl.dll” in PHP.INI file to install Curl library.
Tutorials
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.
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 […]
Useful PHP Charting Libraries
You can easily create simple charts and graph using PHP GD library. But when you need more complex charts or graphs then you will need advanced libraries. These libraries have importance in web development. Suppose you are in the middle of a project and need to get everything done as soon as possible then these […]