Hi all, finaly got my site working how I want, at least in IE6, and FF, just wanted a few people with other browsers, operating systems, resolutions etc to test it if you can please 
http://cpanel.lincoln.ac.uk/dci125/index.shtml
Also trying to get my guestbook working, can anyone see anything wrong with the following code for creating my table?:
I get the message:
db selected & connected to Resource id #2creating table now
However when I got to insert a comment it gives the error:
Error: Table 'cpanelu_dci125.guestbook' doesn't exist

http://cpanel.lincoln.ac.uk/dci125/index.shtml
Also trying to get my guestbook working, can anyone see anything wrong with the following code for creating my table?:
Code:
<?php
// create table
// connecting to database
$sel=mysql_connect("localhost","cpanelu_dci125","******");
if (!$sel)
{
die('Could not connect: ' . mysql_error());
}
// select database
mysql_select_db("cpanelu_dci125", $sel);
echo "db selected & connected to $sel";
// create table
$dat="CREATE TABLE guestbook
(
commentID int NOT NULL AUTO_INCREMENT,
PRIMARY KEY(commentID),
Name varchar(15),
Email varchar(40),
Comment varchar(1000)
)";
echo "creating table now";
mysql_query($dat,$sel);
mysql_close($sel);
?>
I get the message:
db selected & connected to Resource id #2creating table now
However when I got to insert a comment it gives the error:
Error: Table 'cpanelu_dci125.guestbook' doesn't exist