I tested it and tryed to make a new topic in script add-topic.php and nothing happend's in the index.php script
i get no error's and nothing gets in to the mysql evety thing looks right and i get no if checks ether..
Try to test it and see if you get the forum to work.
Here are the mysql table and the files you already got..
CREATE TABLE posts (
ID int(5) DEFAULT '0' NOT NULL auto_increment,
TopicID int(5) DEFAULT '0' NOT NULL,
Name varchar(50) NOT NULL,
Email varchar(50) NOT NULL,
Password varchar(50) NOT NULL,
TimeStamp varchar(10) NOT NULL,
Post text NOT NULL,
PRIMARY KEY (ID)
);
CREATE TABLE topics (
ID int(5) DEFAULT '0' NOT NULL auto_increment,
TopicName varchar(50) NOT NULL,
PRIMARY KEY (ID)
);