-3

Here is my query and it is not working properly.

 $query=mysqli_query($conn,"INSERT INTO 'my_users' (`username`,`password`)VALUES ($username,$password)");

I ensure that my_users is a table data insertion is succesful but any data is not found in database. here the image.enter image description here

1 Answers1

-2

$query=mysqli_query($conn,"INSERT INTO my_users (username,password)VALUES ($username,$password)");\

try my query