1797 gün önce Websitesini Responsive Yapamıyorum
sorusunu cevapladı.
Detay sayfasında head kodlarının arasında aşağıdaki kodun olup olmadığını kontrol eder misin ?
<meta name="viewport" content="width=device-width, initial-scale=1.0">
1837 gün önce jsondan gelen datayı parçalamak
sorusunu cevapladı.
Maalesef tayfun bu şekilde de alamadım. Almış olduğum hata şu şekilde;
SyntaxError: Unexpected token < in JSON at position 0
<br />
<b>Notice</b>: Trying to get property of non-object in <b>/var/www/html/crm/Classes/Dashboard.class.php</b> on line <b>185</b><br />
<br />
<b>Notice</b>: Trying to get property of non-object in <b>/var/www/html/crm/Classes/Dashboard.class.php</b> on line <b>185</b><br />
<br />
<b>Notice</b>: Trying to get property of non-object in <b>/var/www/html/crm/Classes/Dashboard.class.php</b> on line <b>185</b><br />
{
"Status": true,
"Data": null
}
Kodum ise şu şekilde;
$ch = curl_init();
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($ch, CURLOPT_URL,"https://siteismi.com/report");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $xml);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$Response = new stdClass();
$Response->Data = curl_exec ($ch);
//curl_close ($ch);
if (curl_errno($ch)) {
echo "Hata :";
print curl_error($ch);
} else {
curl_close($ch);
}
$Object = json_decode($Response->Data);
return $Object->Data[0]->values[0]->destination;
1842 gün önce mysqli_real_escape_string hatası
sorusunu cevapladı.
Teşekkür ederim hepinize problemim çözüldü.