Firstly, the reason the page did not generate any output, is because it is mearly a function library. These are the steps I followed, cose who ever wrote that thing sure didn't give any newbie instructions...
- Put it in a file labled login.inc (chmd this file 666)
- Using your MySQL client create the database using the fields provided.
- Then create a file called login.php, which should look something like this:
<?php
include("login.inc");
?>
......
- This file should include the form in which members use to login, and then using a simple if-else structure call the login or register functions after the form has been submitted.
The only thing Im confused with is this one line here:
$hidden_hash_var='your_password_here';
what am I supposed to do with that ??