suyesh.amatya Posted July 27, 2008 Share Posted July 27, 2008 say there is a file named update.php(www.111.com/update.php) where i have written a script to update the database by accepting an ID from GET NOw from (www.222.com) by clicking some link i want to execute that update.php page using curl.But i dont know how to pass this ID via GET to the the above mentioned page using curl. code is: $curl_handle=curl_init(); curl_setopt($curl_handle,CURLOPT_URL,'http://111.com/update.php'); curl_setopt($curl_handle,CURLOPT_CONNECTTIMEOUT,2); curl_setopt ( $curl_handle , CURLOPT_RETURNTRANSFER , 1 ); curl_exec($curl_handle); curl_close($curl_handle); hope anyone suggest me some idea. Link to comment https://forums.phpfreaks.com/topic/116817-curl-help/ Share on other sites More sharing options...
Third_Degree Posted July 27, 2008 Share Posted July 27, 2008 All you have to do is change your url to http://111.com/update.php?id=whatever Link to comment https://forums.phpfreaks.com/topic/116817-curl-help/#findComment-600716 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.