This is just for User Registration
do the pws match?
SELECT *
FROM db_name
WHERE user_name = '#FORM.userid#'
is the user name already taken?
INSERT INTO table_name(user_name, user_first, user_last, join_date, password, email)
VALUES('#FORM.userid#', '#FORM.fname#', '#FORM.lname#', '#FORM.date#', '#FORM.password#', '#FORM.email#')
this is the form you would use for your user registration
Registration Form
User ID
First Name
Last Name
Password
Confirm Password
Email Address
Click to Register
Take care,
Walyer
Walyer's Playpen