a simple content management system: part two
Before continuing with the PHP portion of my application, I need some dummy data in the database to work with to help me test my code. As such, I've run the SQL statements below to add 3 records to my "contacts" table:
INSERT contacts (
first_name,
last_name,
phone,
email
) VALUES (
'Atticus',
'Finch',
'0291234567',
'atticus@finch.com'
);
INSERT contacts (
first_name,
last_name,
phone,
email
) VALUES (
'Jeremy',
'Finch',
'0291234568',
'jem@finch.com'
);
INSERT contacts (
first_name,
last_name,
phone,
email
) VALUES (
'Jean-Louise',
'Finch',
'0291234569',
'scout@finch.com'
);
0 comments:
Post a Comment