A simple php and mySQL login system. Want to see what it's like? Click here
<?php
$db_host = "localhost"; // server to connect to.
$db_name = "login"; // the name of the database.
$db_user = "database username"; // mysql username to access the database with.
$db_pass = "database password"; // mysql password to access the database with.
$db_table = "users"; // the table that this script will set up and use.
?>