Patelkiranat1983′s Weblog

Just another WordPress.com weblog

PHP And CURL

<?
$cURL = curl_init();
curl_setopt($cURL, CURLOPT_URL,”http://www.hiddenbrains.com”);
curl_setopt($cURL, CURLOPT_POST, 1);
curl_setopt($cURL, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($cURL, CURLOPT_POSTFIELDS, “foo=1&bar=2″);
$strPage = curl_exec($cURL);
curl_close($cURL);

// Output page
die($strPage);
//echo $strPage;
?>

Advertisement

August 9, 2007 - Posted by | Uncategorized

No comments yet.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s

Follow

Get every new post delivered to your Inbox.