נפתר מה השגיאה בקוד שימות לא קולט
-
הקוד הוא
<?php $ApiDID = "0*********"; $password = $GET_['password']; $type = $GET_['type']; $title = $GET_['title']; $url = "https://www.call2all.co.il/ym/api/UpdateExtension?token=$ApiDID:$password&path=ivr2:1&type=$type&title=$title"; if ($_GET['password'] == NULL){echo "read=t-סיסמת ניהול=password,no,,,7,Digits";exit();} if ($_GET['type'] == NULL){echo "read=t-הקש אחת=type,no,,,7,Digits";exit();} if ($_GET['title'] == NULL){echo "read=t-הקש אחת=title,no,,,7,Digits";exit();} if ($type == 1){ $type = "menu"; } if ($title == 1){ $title = "menu"; } $str = file_get_contents("$url"); $str = json_decode($str,true); ?>
מה הבעיה?
-
@barkol אמר במה השגיאה בקוד שימות לא קולט:
הקוד הוא
<?php $ApiDID = "0*********"; $password = $GET_['password']; $type = $GET_['type']; $title = $GET_['title']; $url = "https://www.call2all.co.il/ym/api/UpdateExtension?token=$ApiDID:$password&path=ivr2:1&type=$type&title=$title"; if ($_GET['password'] == NULL){echo "read=t-סיסמת ניהול=password,no,,,7,Digits";exit();} if ($_GET['type'] == NULL){echo "read=t-הקש אחת=type,no,,,7,Digits";exit();} if ($_GET['title'] == NULL){echo "read=t-הקש אחת=title,no,,,7,Digits";exit();} if ($type == 1){ $type = "menu"; } if ($title == 1){ $title = "menu"; } $str = file_get_contents("$url"); $str = json_decode($str,true); ?>
מה הבעיה?
תנסה לעשות echo למשהו
-
@barkol
תנסה אולי ככה<?php $ApiDID = "0*********"; $password = $GET_['password']; $type = $GET_['type']; $title = $GET_['title']; if ($_GET['password'] == NULL){echo "read=t-סיסמת ניהול=password,no,,,7,Digits";exit();} if ($_GET['type'] == NULL){echo "read=t-הקש אחת=type,no,,,7,Digits";exit();} if ($_GET['title'] == NULL){echo "read=t-הקש אחת=title,no,,,7,Digits";exit();} if ($type == 1){ $type = "menu"; } if ($title == 1){ $title = "menu"; } $url = "https://www.call2all.co.il/ym/api/UpdateExtension?token=$ApiDID:$password&path=ivr2:1&type=$type&title=$title"; $str = file_get_contents("$url"); $str = json_decode($str,true); ?>
-
@מאיר-2000 מצאתי הבעיה בשרת שהשתמשתי...
-
@barkol איזה שרת?
ומה הבעיה בו? -
@שאול הקוד הנכון הוא
<?php $ApiDID = "0*********"; $password = $_GET['password']; $type = $_GET['type']; $title = $_GET['title']; $url = "https://www.call2all.co.il/ym/api/UpdateExtension?token=$ApiDID:$password&path=ivr2:1&type=$type&title=$title"; if ($_GET['password'] == NULL){echo "read=t-סיסמת ניהול=password,no,,,7,Digits";exit();} if ($_GET['type'] == NULL){echo "read=t-הקש אחת=type,no,,,7,Digits";exit();} if ($_GET['title'] == NULL){echo "read=t-הקש אחת=title,no,,,7,Digits";exit();} if ($type == 1){ $type = "menu"; } if ($title == 1){ $title = "menu"; } $str = file_get_contents("$url"); $str = json_decode($str,true); ?>
הטעות כאן
$password = $GET_['password']; $type = $GET_['type']; $title = $GET_['title'];
והנכון
$password = $_GET['password']; $type = $_GET['type']; $title = $_GET['title'];
-
@barkol אז הבעיה לא בשרת??
(גם יש לי בעיות עם שרת מסוים, רוצה לדעת אם הבעיה אכן בשרת.) -
@שאול
איזה שרת? -
@שאול הבעיה גם בקוד הנכון בשרת