-
Notifications
You must be signed in to change notification settings - Fork 0
/
crystalProperties.php
46 lines (43 loc) · 1013 Bytes
/
crystalProperties.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
40
41
42
43
44
45
46
<?php include_once("includes/sessions.php"); ?>
<?php require_once("includes/config.php"); ?>
<?php include_once("includes/dbconnection.php"); ?>
<?php
//PRINTS TITLE OF PAGE FROM VARIABLE
$title = "Aurashop Crystals, Healing, Aura, Chakra, and the Metaphysical - Crystals";
$nav = "crystals";
?>
<?php require_once("includes/top.php"); ?>
<div id="content_wrapper">
<?php require_once("includes/navbar.php"); ?>
<div id="Load">
<?php
$id = $_GET['id'];
require_once("crystals.php");
$_SESSION['dd'] = "crystals";
?>
<?php
switch($_SESSION['dd'])
{
case "crystals":
$dd = "crystals";
break;
case "home":
$dd = "home";
break;
case "aura":
$dd = "aura";
break;
case "store":
$dd = "store";
break;
case "healing":
$dd = "healing";
break;
case "table":
$dd = "table";
break;
}
?>
</div><!--ENDS CONTENT_MAIN DIV-->
</div><!--ENDS CONTENT_WRAPPER DIV-->
<?php require_once("includes/site_info.php"); ?>