try this, not sure if it'll work, but hey
PHP Code:
<?
require("config.php");
mysql_connect($dbhost,$dbuser,$dbpass) or die("<font color=#cc0000>The information in config.php does not aply to the selected database, please chech your enrty</font>");
mysql_select_db($dbname) or die("Could not select database");
//Creating tabel members
mysql_query("CREATE TABLE ladder(
id varchar(100) NOT NULL auto_increment,
clanname varchar(50) NOT NULL,
clantag varchar(10) NOT NULL,
leader varchar(30) NOT NULL,
email varchar(40) NOT NULL,
website varchar(50) NOT NULL,
irc varchar(25) NOT NULL
)") or die('couldnt make table');
?>