View Single Post
Old 02-23-2008, 07:52 PM   #8 (permalink)
Aaron
The Frequenter
 
Join Date: Dec 2007
Location: In my basement
Posts: 386
Thanks: 47
Aaron is on a distinguished road
Default

Why doesn't this work?
PHP Code:
<?php
@require_once("config.php");

//create a table
mysql_query(CREATE TABLE `testusers
    (
    `
idTINYINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE,
    `
nameVARCHAR(40NOT NULL,
    `
passwordVARCHAR(40NOT NULL,
    
PRIMARY KEY(`id`)
    );
) || die(
mysql_error());
?>
Send a message via MSN to Aaron
Aaron is offline  
Reply With Quote