I'm having a problem querying a MySQL DB with PHP
I'm using MAMP 1.9.4 on Mac OS 10.6.6
The connections seems to work
$dbc = mysqli_connect('localhost', 'root', 'password', 'dbname') or
die('error connecting to MySQL server.');
But whenever I run a query I get the die error...
$query = "INSERT INTO table_name (first_name, last_name) VALUES ('John', 'Doe')";
$result = mysqli_query($dbc, $query) or die('error querying database.');
Any ideas?? Could it be something to do with MAMP?