Well you would normally execute a SQL statement, either on the fly or via a stored query:
Code:
Insert Into tblCustomer (Forename, Surname, Username) VALUES ('Joe', 'Fawcett', 'joefawcett')
The data in the VALUES part would normally have come from fields in an HTML form.
--
Joe