MySQL is not inserting the correct username and password in the database. The php code is:
<?php
    $username = $_POST["email"];
    $password = $_POST["password"];
    require 'database.php';
    $myquery = "INSERT INTO verify (`username`, `password`) VALUES ('$username','$password')";
    $query = mysql_query($myquery);
    if (!$query) {
        echo mysql_error();
        die;
    }
?>
I checked the database.php, it is absolutely fine. It is showing username and password as pranav even though the values are different.
Thanks in advance.
 
    