k, below it he whole script. hope you guys can help me.
<?php
mysql_connect("localhost", "login", "password");
$dbname = "oxgames";
$user_tablename = 'news';
$user_table_def = "id MEDIUMINT(10) DEFAULT'0' NOT NULL AUTO_INCREMENT,";
$user_table_def = "postid VARCHAR(8) BINARY NOT NULL,";
$user_table_def = "submitedby VARCHAR(30) BINARY NOT NULL,";
$user_table_def = "tile VARCHAR(50) NOT NULL,";
$user_table_def = "article LONGTEXT NOT NULL,";
if(!(mysql_select_db($dbname))) die(" could not select database");
if(!(mysql_query("CREATE TABLE $user_tablename ($user_table_def)"))) die (" did not create the tables");
echo " we made all the tables.<BR>";
?>