I have made an sms handler system, and everything is okey, working fine. But I get this error: PHP Notice: Undefined offset: 1 Its in the 17. line $user is the 17. line, I know its just notice, but daily 20-30 "notice" is in my php error log, and I wanted to fix this.
I tryed many different method, but no changes. Somebody can help to fix it? Thanks!
$conn           = sqlsrv_connect($serverName, $connectionInfo);
$id             = $_GET["id"];
$from           = $_GET["from"];
$to             = $_GET["to"];
$msg            = explode(" ", $_GET['message']);
$user           = substr(trim($msg[1]),0,10);
 
     
     
    