‘motor çalışmıyor’,
‘kategori’ => ”
);
$options = array(
‘http’ => array(
‘header’ => “Content-Type: application/json\r\n”,
‘method’ => ‘POST’,
‘content’ => json_encode($data)
)
);
$context = stream_context_create($options);
$result = file_get_contents($url, false, $context);
if ($result === FALSE) {
echo “HATA: İstek başarısız”;
} else {
echo “
";
print_r(json_decode($result, true));
echo "
“;
}
?>

