diff --git a/create_database.php b/create_database.php index 2b7a354..4114f12 100644 --- a/create_database.php +++ b/create_database.php @@ -7,6 +7,7 @@ $a=mysqli_query($conn, $sql) or die(mysqli_error($conn)); if($a) { + 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)"; @@ -21,4 +22,4 @@ } mysqli_close($conn); -?> \ No newline at end of file +?>