How can I do this without cURL?
I will not having problem parsing JSON string but how can I make a POST request with one to return a json string contain data??
$dataFeed=$_GET["dataFeed"];
$url='urlneedtopostto';
$data=array('data'=>$dataFeed);
$jsonString=json_encode($data);
How can I post request this? thanks for help.