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 to reset/destroy a cookie in php?
What is the difference between the include() and require() functions?
Which php framework is best for security?
How can you encrypt password using php?
Why php language is used?
What is the functionality of the functions strstr() and stristr()?
How do you debug php?
Why did you choose this particular career path?
Difference between $message vs. $$Message in php.
What is the use of explode() function?
What types of MYSQL function available for affecting columns
How does php isset work?
Is it possible to use com component in php?
How to reset/destroy a cookie?
Suppose the variable $var1 is set to 10 and the $var2 is set to the character var1, what's the value of $$var2?