Need some PHPMyadmin help
Posted by: BobbyG
Posted on: 2007-02-20 12:40:00
I have joomla and smf installed on one of my domains as well as the bridge. I have a tutorial on the smfwebsite im trying to understand. This is the instruction im having trouble with
1. Run this in phpMyAdmin
Code:
CREATE TABLE IF NOT EXISTS `smf_forums` (
`forumName` text NOT NULL,
`catList` varchar(128) NOT NULL default ''
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
2. Go in and add your fields like the example above forumName is the name you'll be passing in, catList are the category id's you want to display for that forum. If your prefix isn't smf_ , make sure to change it.
I tried it on my own with no success
I dont think i entered in the code properly. I went into phpmyadmin, i clicked on the sql button. It brought up a window called "Run SQL query/queries on database", i entered the code
CREATE TABLE IF NOT EXISTS `smf_forums` (
`forumName` text NOT NULL,
`catList` varchar(128) NOT NULL default ''
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
and clicked go
it brought up a page saying "Your SQL query has been executed successfully (Query took 1.2207 sec)"
and below in a window was what i wrote in with a link for editing and a link saying "Create PHP Code" that is a and below that a window where i can edit what i wrote
what do i do after that
here is a link to the tutorial if anyone wants to see it or even reply on there http://www.simplemachines.org/community/index.php?topic=64492.180