Nota Bene : PASSWORD is a MySQL RESERVED word and as MySQL deals with it in CAPITAL CHAR, it is suggested to insert it in CAPITAL CHAR also in php code : ...password("$PASSWORD")

... Login ( Administrators )


Amministratore

Password:

  Home Page
The function to krypt the password can also be done elsewhere and then inserted into database manually.

It is possible to force MySQL to accept password field in low CHAR with a proper PHP script. ( Member's Area )

Syntax to insert an Administrator data is :
INSERT INTO admin_table VALUES( 'admin', '123456...krypted', 'v.ognissanti@libero.it', '' );
...auth_adm.php ( that is the processing page of the form-link of this page-form ) must contain the following function :
PASSWORD = password(\"$PASSWORD\")
The full syntax php line : ... $sql = "SELECT * FROM $nome_tabella
WHERE login = \"$UserName\" AND PASSWORD = password(\"$PASSWORD\")"; ...
User's Login