Php – Model->insert($data) not inserting data into database
I'm using CodeIgniter v4.4.1. I'm trying to insert Customers into my MySQL database. My Customer table has only two columns for now (for testing): idcustomer (primary key, not null, auto increment), and name (varchar(45)). That's working fine. My Customer model…