PDA

View Full Version : How Do I Do SQL?


Dillon
09-21-2008, 12:23 PM
I am trying to add some mods on the script that is on my site... It requires some sql changes, how do I do them> I know that there is a section in the admin panel for it, and the sql's go in the newforum.php file, but I am not sure of the syntax of it should be... Please Help!

Heres the sql I need to run:

INSERT INTO phpbb_config values ('banner_source', 'images/banners/logo_phpBB.gif' );
INSERT INTO phpbb_config values ('banner_path', 'images/banners' );
INSERT INTO phpbb_config values ('banner_link', 'index.php' );
INSERT INTO phpbb_config values ('banner_cols', '2' );
INSERT INTO phpbb_config values ('banner_width', '200' );
INSERT INTO phpbb_config values ('banner_height', '91' );

INSERT INTO `phpbb_config` (config_name, config_value) VALUES ('modcp_levels_used', '');

Thanks!
-Dillon