I accidently ran the query one to many times. How can I remove these from my db? Thanks
Code:
INSERT INTO settinggroup VALUES (40, 'Staff Messaging System', 40);
INSERT INTO setting (settingid,settinggroupid,title,varname,value,description,optioncode,displayorder) VALUES (NULL,40,'Display Staff Messages','displaystaffmessages','1','Do you wish the message to be displayed to all staff to be displayed on all pages?','yesno','1');
INSERT INTO setting (settingid,settinggroupid,title,varname,value,description,optioncode,displayorder) VALUES (NULL,40,'Staff Usergroups','staffusergroups','5,6,7','Enter the usergroup id\'s of your staff in here. (Seperate with commas WITH NO SPACES!)','','2');
INSERT INTO setting (settingid,settinggroupid,title,varname,value,description,optioncode,displayorder) VALUES (NULL,40,'Message','themessage','','Here you put the message that you want to be displayed on all pages to your staff.<br>(You may use html as as <br> tags are needed to go to a new line','textarea','3');
that is what I ran. Your help would be apreaciated!
Josh