What is the meaning of curl , which is used while connecting
with pay pal? and how it works?
Answer Posted / madipally naveen kumar
Curl means client URL , php supports libcurl which allows
you to connect and communicate to many different types of
servers with many different types of protocals .libcurl
currently supports http,https,ftp,gopher,telnet and ldap
protocals.Once you have enabled the php with curl
support.you can use the curl functions.You can intialize a
curl session using the curl_init(),then you can set all
your options for the transfer via the curl_setopt(),then
you can execute the session wiht the curl_exec() and then
you can finish off your session using the curl_close().
| Is This Answer Correct ? | 56 Yes | 0 No |
Post New Answer View All Answers
How can you declare a constant variable in php?
Write syntax to open a file in php?
How to close a session properly?
Is ruby on rails php?
How to download files from an external server with code in php?
how to use http headers inside php? Write the statement through which it can be added?
In php, how to redirect from one page to another page?
What is the difference between explode() and split() functions?
Which operator is used to combine string values in php?
How to delete an element from an array?
What are the rules for naming a php variable?
Explain about require and include function?
Which function is used in php to search a particular value in an array?
What is chrome logger?
What is isset in php form?