I am trying to check if record exist in SQL and get a return -> True or False. It returns a notice: Notice: Trying to get property of non-object in.... if($result->num_rows > 0)
$connection = new mysqli('localhost', 'user', 'pass','db_name');
$query = "SELECT * FROM order WHERE telephone = '".$telephone."' AND order_status_id='0' ";
$result = $connection->query($query);
            if($result->num_rows > 0) {
                    echo 'found'; // The record(s) do exist
                }
            else{
                    echo 'not found'; // No record found
                }
    $connection->close();
 
     
     
     
    