PHP ile JSON POST Verilerini Almak
PHP ile JSON POST gönderildiğinde bunu $_POST
ile almamız mümkün değil.
Örnek bir JSON POST işlemi yazalım.
fetch(`https://siteadi.com/api.php`, {
method: POST,
body: JSON.stringfy({
name: 'Tayfun'
})
})
Şimdi api.php
de bu datayı şöyle alıp işleyebilirsiniz;
<?php
$data = json_decode(file_get_contents('php://input'), true);
print_r($data);