Translate

Friday, 4 May 2012

Step 5: Creating the index.php file

Step 5: Creating the index.php file
In this step we will create the homepage of the website, we’ll keep it very basic, only the login will be displayed.

File index.php:

<?php
 
 require_once "header.php";
 //content
 include "login.php";
 // more content
 require_once "footer.php";
 ?>

No comments: