Jump to content

CURL help


suyesh.amatya

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.