-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
39 lines (29 loc) · 844 Bytes
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
ob_start();
// include header.php file
include ('header.php');
?>
<?php
/* include banner area */
include ('Raw_PHP/_banner-area.php');
/* include banner area */
/* include on sale section */
include ('Raw_PHP/on-sale.php');
/* include on sale section */
/* include special price section */
include ('Raw_PHP/_special-price.php');
/* include special price section */
/* include banner ads */
include ('Raw_PHP/_banner-ads.php');
/* include banner ads */
/* include new items section */
include ('Raw_PHP/_new-items.php');
/* include new items section */
/* include blog area */
include ('Raw_PHP/_blogs.php');
/* include blog area */
?>
<?php
// include footer.php file
include ('footer.php');
?>