-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetail.php
78 lines (71 loc) · 1.56 KB
/
detail.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?php
include ('header_detailpage.php');
if ( !isset($_REQUEST['item_id']) && !is_numeric($_REQUEST['item_id'] ) ) {
echo "<script language='javascript'> self.location = 'index.php'; </script>";
exit;
}
$row = getCard_byId( $_REQUEST['item_id'] , $objDb );
?>
<!--body_conetnt-->
<div class="body_content_wrapp">
<?php
if ( isset( $_REQUEST ) && isset( $_REQUEST['step'] ) && !empty( $_REQUEST['step'] ) ) {
switch ($_REQUEST['step']) {
case "step1" :
default : {
include ('detail_step1.php');
break;
}
case "step2" : {
include ('detail_step2.php');
break;
}
case "step3" : {
include ('detail_step3.php');
break;
}
case "step4" : {
include ('detail_step4.php');
break;
}
case "step44" : {
include ('detail_step44.php');
break;
}
case "step5" : {
include ('detail_step5.php');
break;
}
case "step6" : {
include ('detail_step6.php');
break;
}
case "step7" : {
include ('detail_step7.php');
break;
}
}
} elseif (isset($_REQUEST['item_id'])) {
include ('detail_step1.php');
} else {
echo "<script language='javascript'> self.location = 'index.php'; </script>";
}
?>
<!--btm_reviews_wrapp-->
<div class="btm_reviews_wrapp">
<?php include 'review-system.php'; ?>
</div>
<!--btm_reviews_wrapp-->
</div>
<!--body_content-->
<!--footer_Wrapp-->
<div class="footer_wrapp">
<div class="footer_btm">
©2012 Send With Style All Rights Reserved
<br />
Web Design BY Design Soft Studios
</div>
</div><!--footer_Wrapp-->
</div><!--main_wrapp-->
</body>
</html>