index.php
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php
if(!isset($_SESSION)) {
session_start();
}
/**
* A/B Testing.
*/
include_once("includes/lib/AB.php");
$ab = AB::Instance()->getAb();
/**
* Include the template selected by A/B test.
*/
include_once("includes/templates/$ab/index.php");
?>
if(!isset($_SESSION)) {
session_start();
}
/**
* A/B Testing.
*/
include_once("includes/lib/AB.php");
$ab = AB::Instance()->getAb();
/**
* Include the template selected by A/B test.
*/
include_once("includes/templates/$ab/index.php");
?>