Firstly, locate your php.ini file, which in my case is in the default directory of xampp\php, and edit with a notepad.
Locate and uncomment (remove the; at the start of the line) the following lines:
extension=php_curl.dll
Restart your Apache server.
Create a file called test.php with the below code in your server root and access it with http://localhost/test.php
<?php
echo phpinfo();
You should see somewhere on that page a block that looks like this:
That’s it
I hope you like this Post, Please feel free to comment below, your suggestion and problems if you face - we are here to solve your problems.