If you set the default values for each column in the database, then whenever you create a new row you can simple set all values to default with a simple SQL statement:
INSERT INTO table_name
VALUES SET column_1=DEFAULT,
column_2=DEFAULT,
column_3=DEFAULT,
column_4=DEFAULT etc ....