Ciao!!!
Volevo chiedere se qualcuno mi crea un file PHP per la registrazione utenti...UN MODULO!
Questi sono i comandi SQL:
CREATE TABLE utenti (
id INT UNSIGNED NOT NULL AUTO_INCREMENT,
name VARCHAR(30) NOT NULL,
surname VARCHAR(30) NOT NULL,
username VARCHAR(30) NOT NULL,
password CHAR(32) NOT NULL,
PRIMARY KEY(id),
INDEX(username, password)
);

INSERT INTO utenti (name, surname, username, password) VALUES ('nome', 'cognome','nickname',MD5('password'));
INSERT INTO utenti (name, surname, username, password) VALUES ('Fabio', 'Sutto','fabio heller',MD5('test2'));
INSERT INTO utenti (name, surname, username, password) VALUES ('Giancarlo', 'Moschitta','gm',MD5('test3'));

CREATE TABLE sessioni (
uid CHAR(32) NOT NULL,
user_id INT UNSIGNED NOT NULL,
creation_date INT UNSIGNED NOT NULL,
INDEX(uid)
);

A me interessa un modulo per la registrazione degli utenti in modo da inserire nelle tabelle quello che hanno scritto nel modulo.

grazie in anticipo!

ps: non sò usare bene il php e mysql...