I'm trying to build a subscribe form. The problem is that the page gets redirected, and the data doesn't get entered into db, page gets redirected to
http://localhost/xampp/MY/SUB_FOLDERS/includes/parse.php?subscriber=sid%40patel&subscribe=subscribe
HTML CODE
        <div id="subsc">
            <form class="navbar-form navbar-right" action="includes/parse.php" mathod="post">
              <div class="form-group">
                <input type="email" placeholder="Email" class="form-control" name="subs" id="subs" required="required">
              </div>
              <input type="submit" class="btn btn-success" name="subscribe" id="subscribe" value="subscribe">
            </form>
          </div>
Ajax code:
<script type="text/javascript">
$(document).ready(function(){
   $("#subscribe").click(function(){
    username=$("#subs").val();
         $.ajax({
           type: "POST",
           url: "includes/parse.php",
            //data:dataString,
            success: function(html){
        if(html=='true')
              {
                $("#subsc").fadeOut("normal");
                $("#subsc").html("Thank you for subscriping!");
              }
              else
              {
                    $("#subsc").html("Error in subscribing");
              }
            },
        });
         return false;
    });
});
</script>
PHP script for inserting data to database:
<?php include("connect.php");
if (@$_POST['subs']) {
 $subscriber = mysql_real_escape_string(strip_tags($_POST['subs']));
 $sendmessage = mysql_query("INSERT INTO subscriber VALUES('','$subscriber',now())");
 echo 'true';
}
?>
PS: Name of rows in subscriber id, email, datetime