example.php
{"status": "ok"} {"status": "error"}
result:
ok , error
My website is showing a blank page(I'm using this code),can you help me to fix it?
<?php
$userinfo = 'example.php';
$fgc = file_get_contents($userinfo);
$json2 = json_decode($fgc, true);
$media = $json2['status'];
$mediaId = $media;
echo $mediaId;
?>