I don't know how to script that well but here are the specifics to the script I want.
Needs to be in MySQL
Has to take information typed onto a form and place it into a table named 'accounts' (pretty much like a registration script. The form, table and columns already exist.)
Has to check that the name and password do not already exsist and all the other basic registration script stuff
Has these fields:
'name'
'password' (converted into SHA1)
'birthday' (yryr-mm-dd)
'email'
Other specifics:
Needs to assign an id into the column named 'id' and the id has to be 1 more than the last id recorded (starting at 1)
Needs to set the column 'banned' to 0 (zero)
Any other specifics needed? Just post here.
Needs to be in MySQL
Has to take information typed onto a form and place it into a table named 'accounts' (pretty much like a registration script. The form, table and columns already exist.)
Has to check that the name and password do not already exsist and all the other basic registration script stuff
Has these fields:
'name'
'password' (converted into SHA1)
'birthday' (yryr-mm-dd)
'email'
Other specifics:
Needs to assign an id into the column named 'id' and the id has to be 1 more than the last id recorded (starting at 1)
Needs to set the column 'banned' to 0 (zero)
Any other specifics needed? Just post here.
Comment