Hello, I am having some problems with my SQL today(last 4 days actuly) when i try to add data to my MS Access DB i dont get any errors but I also dont get any data in the DB, here is the code i am using
$rs = $db_connection->execute("INSERT INTO Users (Username, [Password], Access, First_Name, Last_Name, Phone)
VALUES '$username','$password', '$Access', '$First_Name', '$Last_Name', '$Phone');
and this is what it makes if i echo the code
INSERT INTO Users (Username, [Password], Access, First_Name, Last_Name, Phone)
VALUES ('testest','098f6bcd4621d373cade4e832627b4f6','','test','test','')
any help would be great, Thanks.
Don