I'm wondering what's the problem with this code? What I want to happen is to insert record when I click the Submit Button. But it seems I'm having a problem with the isset function.
 Database Name: dbase
 Table Name: tblmessage
 Fields:
 message_id - INT - auto increment
 message - TEXT
Update: I can't still add / insert record in my database.
Thank you in advance!
<html>
<head></head>
<body>
<form method = "post" action = "<?php echo $_SERVER['PHP_SELF']; ?>">
    Message: <input type = "text" name = "message">
    </br></br>
    <input type = "submit" name = "submit">
</form>
<?php
    if (isset($_POST['submit'])) {
       if (!empty($_POST['message'])) {
        $conn = mysqli_connect("localhost", "root", "","dbase");
        $message = $_POST['message'];
        $sql = ""INSERT INTO tblmessage (message_id, message) VALUES (NULL, '$message')";
        $insert = mysqli_query($conn,$sql);
          if ($insert) {
              echo "Message successfully added!";
          }
          else {
            echo "Error" . mysqli_error($conn);
          }
      }
    }
    mysqli_close($conn);
?>
</body>
</html>
 
     
     
     
    