jim9 Posted April 15, 2012 Report Share Posted April 15, 2012 Hi, while reading a php code I have found this part if (mochi_setting('curl') == 1) { $game_data = curl($game_info); $get_type = 'cURL';} else { $game_data = file_get_contents($game_info); $get_type = 'file_get_contents';}echo $game_data; I do not know how to use curl(); and I do not know how to research it to get some details about it.could you please help me to do that? Thanks 1 Link to comment Share on other sites More sharing options...
birbal Posted April 15, 2012 Report Share Posted April 15, 2012 http://php.net/curl Link to comment Share on other sites More sharing options...
justsomeguy Posted April 16, 2012 Report Share Posted April 16, 2012 Note that PHP does not have a built-in function called simply "curl", that sounds like a custom function in your code that probably uses the other curl functions. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now