switch ($IID)
{
case 1:
include "Index\IndexFeatures.php"; // This line will not be executed
break;
case 2:
include "Index\IndexValue.php"; // This line will not be executed
break;
case 3:
include "Index\IndexGuarantee.php"; // This line will not be executed
break;
case 4:
include "Index\IndexFAQs.php"; // This line will not be executed
break;
case 5:
include "Index\IndexContactUs.php"; // This line will not be executed
break;
case 6:
include "Index\IndexDemos.php"; // This line will not be executed
break;
case 7:
include "Login.php"; // This line will not be executed
break;
case 8:
switch($PID){
case 1 :
// process the create org details - forward to page 2
include "Index\CreateOrgPage2.htm";
break;
case 2 :
// process the create org details - forward to page 3
include "Index\CreateOrgPage3.htm";
break;
default:
include "Index\CreateOrgPage1.htm";
break;
}
break;
default:
include "Index\IndexRightPane.php"; // This line will be executed
break;
}
?>