PHP cURL

cURL stands for client URL. This is basically a library which allows communicating with many different type of server with different protocols like HTTP, FTP etc. When we work on XAMPP or WAMP(localhost) then cURL library is included in it. To enable the cURL we have to edit php.ini file which are shown below. Instead … Read more

How to Send Mail in PHP

In my previous article, we have discussed about how to send email using SMTP. But in this article we will see how to send mail from form in PHP using simple mail() function. This process is generally used on website for contact form. When a visitor open site and want to contact, then he will … Read more