INSERT INTO nancy_collectors (name,date1,organization,quote,active)
VALUES ('#form.name#','#form.date1#','#form.organization#','#form.quote#',#form.active#)
UPDATE nancy_collectors
SET
name = '#form.name#',
date1 = '#form.date1#',
organization = '#form.organization#',
quote = '#form.quote#',
active = #form.active#
WHERE ID = #URL.ID#
SELECT *
FROM nancy_collectors
Admin: Main Page