hey guys i was just going through the doumentation of paymill here https://developers.paymill.com/en/intro ... nt-method/ . now the documentation refers to examples of CURL , what is CURL ?
i know that php contains a subset thats called CURL , but is this the same CURL ? can somebody tell me wht this CURL is ?
Thank you.
what is CURL ?
Moderator: General Moderators
Re: what is CURL ?
cURL is a library built around making HTTP (and other) requests in code. PHP can do that natively but it's a bit awkward to work with.
However for PHP it looks like Paymill has stuff already written for you to use. Not sure where to find it though.
However for PHP it looks like Paymill has stuff already written for you to use. Not sure where to find it though.
Re: what is CURL ?
Hey Thanks !
Re: what is CURL ?
Also, if you do need to use cURL, do yourself a favour and take a look at Guzzle. Much nicer to work with.
Re: what is CURL ?
Thanks celauran !
, will keep that in mind .