| 
<?php
/* File name        : index.php
 * Created by       : Junaid Hassan (email : [email protected] , blog : junaidhassanalvi.wordpress.com)
 * Created On       : 13-April-2103
 * Description      : This is entry point. Every request will be landed here.
 *                  : change the path of includes here, if you want
 *
 * Change Logs      :
 *
 *
 */
 ?>
 
 
 <?php define("INCLUDES", "includes"); ?>
 
 <?php //jha-- to start the process ?>
 <?php include(INCLUDES . '/starter.php'); ?>
 
 
 
 
 |