hi i got another table now same error like other one before 🙁
<?php
require_once 'config.php';
mysql_connect($host, $login, $pass);
mysql_select_db($db) or die("Could not select database 1");
$sql = "CREATE TABLE list (
username VARCHAR(25) NOT NULL
usermail VARCHAR(255) NOT NULL
subject VARCHAR(255) NOT NULL
message VARCHAR(255) NOT NULL
date VARCHAR(30) NOT NULL
ip VARCHAR(30) NOT NULL
)";
$result = mysql_query($sql);
if ($result) {
echo("<br>$abuse created successfully");
} else {
echo("error when creating table");
}
MySQL_close()
?>