CREATE TABLE member_admin (
user_id varchar(10) NOT NULL,
user_password varchar(32) NOT NULL,
PRIMARY KEY (user_id)
);
#
# Dumping data for table 'member_admin'
#
INSERT INTO member_admin VALUES ( 'admin', PASSWORD('techker'));(here)
#
# Table structure for table 'member_user'
#
CREATE TABLE member_user (
id int(10) NOT NULL auto_increment,
user_id varchar(10) NOT NULL,
user_password varchar(32) NOT NULL,
email varchar(35) NOT NULL,
fullname varchar(50) NOT NULL,
date date DEFAULT '0000-00-00' NOT NULL,
comment varchar(100) DEFAULT '0' NOT NULL,
PRIMARY KEY (id)
);
#
# Dumping data for table 'member_user'
#
INSERT INTO member_user VALUES ( '1', 'user', PASSWORD('user'), 'webmaster@bel
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
If you want to link to this page you can use the following URL:
Example:
The PHP Web-Ring Community
The purpose of this Ring is to link together the best sites and resources on the PHP programming language. Everyone with a quality site is welcome to join. (tutorials, documentation, tips, help, forums,...) (12 members)