-
Notifications
You must be signed in to change notification settings - Fork 0
/
customize_savethedate.php
76 lines (70 loc) · 1.74 KB
/
customize_savethedate.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
<?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 );
//echo'<pre>'; print_r($_REQUEST); echo '</pre>';
//echo'<pre>'; print_r($_SESSION); echo '</pre>';
?>
<!--body_conetnt-->
<div class="body_content_wrapp">
<?php
$cat_id = 'cat_id_'.$row['cat_id'];
if ( isset( $_REQUEST ) && isset( $_REQUEST['step'] ) && !empty( $_REQUEST['step'] ) ) {
switch ($_REQUEST['step']) {
case "step1" :
default : {
include ('customize_savethedate_step1.php');
break;
}
case "step2" : {
include ('customize_savethedate_step2.php');
break;
}
case "step3" : {
include ('customize_savethedate_step3.php');
break;
}
case "step33" : {
include ('customize_savethedate_step33.php');
break;
}
case "step4" : {
include ('customize_savethedate_step4.php');
break;
}
case "step5" : {
include ('customize_savethedate_step5.php');
break;
}
case "step6" : {
include ('customize_savethedate_step6.php');
break;
}
}
} elseif (isset($_REQUEST['item_id'])) {
include ('customize_savethedate_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>