I am doing a curl in PHP to post data on site and echo the result but it doesn't post data here is my code:
<?php
$imei = "imei=XXXXXXXXX";
//set POST variables
$url = 'http://XXX.com/XXX.php';
//open connection
$ch = curl_init();
//set the url, number of POST vars, POST data
curl_setopt($ch,CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_POST, true);
curl_setopt($ch,CURLOPT_POSTFIELDS, $imei);
curl_setopt ($ch, CURLOPT_REFERER, 'http://www.XXX.com');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_STDERR, fopen('php://output', 'w+'));
curl_setopt($ch, CURLOPT_VERBOSE, 1);
//execute post
$result = curl_exec($ch);
//close connection
curl_close($ch);
echo $result;
echo $imei;
?>
when i echo $imei, it shows up the full string but data isn't passed :S
Please help, what's wrong with code??
Thanks in advance
Update: In the orgignal html of the website it's name="imei" not id="imei"
$result– PHP Bugs Dec 7 '12 at 8:07<?php print_r($_POST); ?>and do a request to that script url to check if POST data is passed or not. Are you sure the url you request is correct? I see no www. there and they might redirect you to the url with www. and POST data is lost on redirect. – Ranty Dec 7 '12 at 10:01