31.03.2015, 12:22
Use insert query.
Insert query format is as follows :
In your case it will be something line this
Insert query format is as follows :
Код:
INSERT INTO table_name (column1, column2, column3,...) VALUES (value1, value2, value3,...)
PHP код:
INSERT INTO `groups` (`Name`, `MOTD`,...) VALUES ('Example', 'Example MOTD', ....)