<h1>Welcome to our estore !</h1>
<p>If you are a registered user please <a href="login.php">Login here</a></p> /* the place where members login ...*/
<p>If you are a new user please <a href="register.php">Register here</a></p> /* the place where members register ...*/
</body>
</html>
login.php
<?php /* this is the LOGIN page where new users authenticate and enter the site */
session_start(); /*required to initiate session data such as to if the user is logged in */
include 'config.inc.php'; /* we need to connect to the database */