Jump to content

Problem creating a table HELP


redgtsviper

Recommended Posts

Can anyone tell me what is wrong with this code



# phpMyAdmin MySQL-Dump
# [a href=\"http://phpwizard.net/phpMyAdmin/\" target=\"_blank\"]http://phpwizard.net/phpMyAdmin/[/a]
#
# Table structure for table 'users'
#

CREATE TABLE users (
user_id mediumint(9) NOT NULL auto_increment,
first_name varchar(15) NOT NULL,
last_name varchar(30) NOT NULL,
email varchar(40) NOT NULL,
username varchar(40) NOT NULL,
password varchar(40) NOT NULL,
registration_date datetime DEFAULT '0000-00-00 00:00:00' NOT NULL,
PRIMARY KEY (user_id)
);
Link to comment
https://forums.phpfreaks.com/topic/8517-problem-creating-a-table-help/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.