Member's Area Access
Member's Area Access
Username

Password:
Situation is :
The User has registered and subscribed
...the Administrator has transferred user's data into
the user's table...please use this Form-section only for :
Diverse Ads
PHP_Bay-home Registration info
Username:
Password:
You can login after you fresh register or you can use the
registered access data already inserted into fields
Login:nuovo
Password:utente

...please use this Form-section only for :
Auto Ads
 
The registered user must be recalled that his surfing is based on Cookie savvy browser's setting.
Security Remarks
If an hacker downloads as link object the process-action of this page ( by peeping into the source code of this page ), to bypass password system , the Web Server will return php answer : ...
if ((!$nomeutente) || (!$password))
{header("Location: http:/@/ads/login.php");
exit;}
( This code is in the file : autorizza_utente.php )
Will get the html page : login.htm with the sole html content that is anyway visible also from here.
The registering user finds a place in the table auth_user.
After he sends payment's reference for subscription , then the Administrator transfers his data in the table users with following query :

By an MS-DOS prompt : INSERT utenti VALUES ( 'nick', 'name', 'nick@name.it' ,'');
For more records : INSERT users VALUES ('nick_1','name_1','nick_1@name.it',''),('nick_2','name_2','nick_2@name.it','');
By php-code : $sql="INSERT INTO users (field_1, field_2, field_3, field_4) VALUES (\"$var_1\", \"$var_2\",\"$var_3\",\"\")";
Administrator's Login
MS-DOS
Now suppose You are the Administrator and you reserved to yourself the following access data : Login:ADMINISTRATOR Password:secret To access your service_database , where you have set the table users which has 4 fields of which the last one is an Autoincrement Primary Key The following is your dealing with an MS-DOS PROMPT : Microsoft(R) Windows 98 (C)Copyright Microsoft Corp 1981-1999. C:\WINDOWS>cd C:\mysql\bin C:\mysql\bin>mysql -u, --user=ADMINISTRATOR -p Enter password: ******* Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 103 to server version: 3.22.34-shareware-debug Type 'help' for help. mysql> mysql> use service_database Database changed mysql> INSERT users VALUES ('this','that','this@that.com',''); Query OK, 1 row affected (0.38 sec)
Page begin
mysql>