diff --git a/create_database.php b/create_database.php
index 2b7a354..5575231 100644
--- a/create_database.php
+++ b/create_database.php
@@ -9,7 +9,7 @@
{
echo "Database Created Successfully !!
";
mysqli_select_db($conn, "User_Database");
- $sql="create table login_data( id int auto_increment primary key, usrname varchar(50) not null, pass varchar(50) not null)";
+ $sql="create table login_data( id int auto_increment primary key, usrname varchar(50) not null, pass varchar(50) not null)";
if(mysqli_query($conn, $sql))
echo "Table login_data Created Successfully !!
";
$sql="create table user_data(id int auto_increment primary key, name varchar(50) not null,phone bigint(10) not null )";
@@ -21,4 +21,4 @@
}
mysqli_close($conn);
-?>
\ No newline at end of file
+?>