Здравствуйте, не работает скрипт.
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, 'http://phpbeautifier.com/');
curl_setopt($curl, CURLOPT_HEADER, 1);
curl_setopt($curl, CURLOPT_POST, 1);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_POSTFIELDS,
array (
'__code'=>$code,
'indentation'=>'on',
'source'=>'get'
));
curl_setopt($curl, CURLOPT_USERAGENT, 'MSIE 5'); )
curl_setopt ($curl, CURLOPT_REFERER, "http://yandex.ru");
$res = curl_exec($curl);
echo $res;
curl_close($curl);