no answer..................................






im stuck with post method of CURL................................
$url = "
https://www.cleartrip.com/m/flights/itinerary/68f7a81c4b-6cb8-4ebe-889d-250c956b399e/info";
$sid='a8680776-7db7-4b9d-970c-83d7b8ebd260';
$rnd_one='O';
$from='DEL';
$to='AMD';
$depart_date='22/06/2012';
$adults='1';
$childs='0';
$infants='0';
$dep_time='0';
$class='Economy';
$airline='';
$carrier='';
$timestamp='';
$companyid='110340';
$source='MOBILE';
$fromCityName='';
$toCityName='';
$preferred_flights='ALL,';
$preferred_time='';
$BIZ_ACTION_MODE='VIEW_ORDER_CAPTURE';
$out_fare_key='supp_AMADEUS|si-a8680776-7db7-4b9d-970c-83d7b8ebd260|fk_S2_4793_1340366100000_M2SIP,V2IPJK_true_fk_9W-K_2514_1340379300000_M2SIP,V2IPJK_true_true';
$out_price='9698';
$out_no_legs='2';
$out_leg_aircode_1='S2';
$out_leg_aircode_2='9W-K';
//url-ify the data for the POST
//$fields_string='';
//foreach($fields as $key=>$value)
//{ $fields_string .= $key.'='.$value.'&'; }
//rtrim($fields_string,'&');
$ch = curl_init($url);
//print_r($ch);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt ($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS ,$sid.$rnd_one. $from.$to. $depart_date.$adults.$childs.$infants.$dep_time.$class.$airline.$carrier.$timestamp.$companyid.$source.$fromCityName.$toCityName.$preferred_flights.$preferred_time.$BIZ_ACTION_MODE.$out_fare_key.$out_price.$out_no_legs.$out_leg_aircode_1.$out_leg_aircode_2);
curl_setopt($ch, CURLOPT_USERAGENT, "android Mozilla/5.0 (Linux; U; Android 0.5; en-us)");
$curl_scraped_page = curl_exec($ch);
curl_close($ch);
echo $curl_scraped_page ;
page shows empty..........................