This is the code
<?php
$db=mysqli_connect('localhost', 'root', '', 'test');
$sql = "insert into users ('name', 'add') VALUES ('anand' , 'Greeshmam')";
if(!(mysqli_query($db, $sql))) {
die('SQL ERROR: ' . mysqli_error ($db) . " - Query Was: {$sql}");
}
?>
The error message is
SQL ERROR: You...