Installation instructions are under the huge white heading that reads "Instructions."Quote:
Create your database table:Alter the database login details at the top; modify the bits in plain HTML to match your site design; save to a file; include at the top of any PHP-enabled page you wish to protect. Having anything (DOCTYPE, HTML, HEAD, whitespace...) before the opening <?php tag of the block containing the include statement will cause the script to fail.Code:create table users (id int auto_increment, nick text, password text, email text, primary key(id));
