Get documentation at
http://www.mysql.com/doc/en/CREATE_TABLE.html
install ODBC for MySQL
then create a ODBC connection to mysql with name "forum"
then create a table with
CREATE TABLE forum
(
code INTEGER AUTO_INCREMENT,
parentcode INTEGER NOT NULL DEFAULT 0,
title VARCHAR(50) NOT NULL DEFAULT '',
uname VARCHAR(50) NOT NULL DEFAULT '',
email VARCHAR(50) NOT NULL DEFAULT '',
description TEXT DEFAULT ''
)
then you should use the right user name / password while connnecting
thats it