I got a table with 4 fields:
id, int(11), auto increament email, varchar(32) pass, varchar(32) date_created, date
My question
You can insert in the format
INSERT INTO YourTable (Your Columns) VALUES (Your Values)
So for e.g.
INSERT INTO Test_Table (email, pass, data_created) VALUES ('john@blah.com', 'pass', to_date(string, format))