This is a site using PHP which incorporates MySQL, this is the full code separated in four files, one is index.php, two is login.php, three is loginprocess.php and forth is calls.php. This is a site which simply after logging in displays the phone calls to my home phone number from the CALLERIDNET program
This is the default file which loads the login.php
inex.php
<?php//index.php
This is a program which once loged on
will allow to display the phone calls to
an address created by CALLERIDNET using a
mysql dtabase */session_start();
if (!isset($_SESSION["login"]))
header("location:login.php");
?>
This is the login file in html which checks the validity of the input and loads the loginprocess.php