27 באפר׳ 2021, 15:55

@barkol

$url = "https://www.call2all.co.il/ym/api/סוג פעולה לביצוע?token=0773137770:$1234&פרמטרים";
$handle = curl_init();
curl_setopt_array($handle,
  array(
    CURLOPT_URL    => $url,
CURLOPT_RETURNTRANSFER   => true,
  )
);
 
$data = curl_exec($handle);

curl_close($handle);

$data = json_decode( $data );
$z = $data->responseStatus ;
if ($z == OK)
{print"עודכן בהצלחה&";}
else{print"שגיאה&";}
?>