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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.