I'm sure it's something really simple but I just can't find it. Here is my code
<?
include './include/db_connect.php';
$query = "CREATE TABLE pm_store (
pm_id INT NOT NULL AUTO_INCREMENT,
pm_user_id INT NOT NULL,
pm_title VARCHAR NOT NULL,
pm_body TEXT NOT NULL)";
echo($query);
$result = mysql_query($query,$conn) or die(mysql_query());
?>
Thanx for any help you can give
Rob