-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsave_men.php
More file actions
208 lines (165 loc) · 5.45 KB
/
Copy pathsave_men.php
File metadata and controls
208 lines (165 loc) · 5.45 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
<?php session_start(); ?>
<html lang="en" dir="ltr">
<head>
<link rel="stylesheet" href="./css.css">
<link rel="stylesheet" href="./mix&match.css">
<meta charset="utf-8">
<title></title>
</head>
<body>
<?php
include("config.php");?>
<ul>
<li>
<a class="logo" href="index.php">
<b>
<font size="4">Mixthy</font>
</b>
</a>
</li>
<li class="auth">
<?php
if(isset($_SESSION["click"])){?>
<div>
<span class="logo">
<b>
<font size="4">
<?php echo $_SESSION["Username"];?>
</font>
</b>
</span>
<a class="logo" href="logout.php">
<b>
<font size="4">Log out</font>
</b>
</a>
</div>
<?php
}
else{?>
<a class="logo" href="login.php">
<b>
<font size="4">LogIn</font>
</b>
</a>
<?php
}
?>
</li>
</ul>
<div class="content">
<h1>Mix&Match</h1>
</div>
<div class="showmix">
<div class="box-showmix">
<?php
// $strSQL = "SELECT * FROM member WHERE UserID = '".$_SESSION["UserID"]."' ";
// $objQuery = mysqli_query($objCon,$strSQL);
// $objResult = mysqli_fetch_array($objQuery);
if(isset($_POST['submit'])){
$_SESSION["shirt"]=$_POST["shirt"];
$_SESSION["pant"]=$_POST["pant"];
$_SESSION["shoe"]=$_POST["shoe"];
// $shirtdes = mysqli_real_escape_string($objCon, $_POST['comment']);
// if ($_POST['shirt']||$_POST['shoe']||$_POST['shoe']==""){
// echo "please choose";
// exit();
// }
// if ($_POST['shirt']==""){
// echo "please choose shirt";
// exit();
// }
//
// if ($_POST['pant']==""){
// echo "please choose pant";
// exit();
// }
//
// if ($_POST['shoe']==""){
// echo "please choose shoe";
// exit();
// }
// else {
// echo "Your shirt : {$_POST['shirt']} ";
// $shirt = "image/men/shirt/shirt{$_POST['shirt']}.jpg";
// // $shirt1 = base64_encode(file_get_contents("image/men/shirt/{$_POST['shirt']}.jpg"));
// echo '<img src="'.$shirt.'" width="200" height="200">';
// echo "<br>";
//
// echo "Your pant : {$_POST['pant']} ";
// $pant = "image/men/pant/pant{$_POST['pant']}.jpg";
// echo '<img src="'.$pant.'" width="200" height="200">';
// echo "<br>";
//
// echo "Your shoe : {$_POST['shoe']} ";
// $shoe = "image/men/shoe/shoe{$_POST['shoe']}.jpg";
// echo '<img src="'.$shoe.'" width="200" height="200">';
// echo "<br>";
//
//
//
// $strSQL = "INSERT INTO uniform (UserID,shirtID) VALUES ('".$_SESSION["UserID"]."','".$_POST["shirt"]."')";
// $objQuery = mysqli_query($objCon,$strSQL);
//
if ($_POST['shirt']){
echo "Your shirt : {$_POST['shirt']} ";
$shirt = "image/men/shirt/shirt{$_POST['shirt']}.jpg";
// $shirt1 = base64_encode(file_get_contents("image/men/shirt/{$_POST['shirt']}.jpg"));
echo '<img src="'.$shirt.'" width="200" height="200">';
}
echo "<br>";
if ($_POST['pant']){
echo "Your pant : {$_POST['pant']} ";
$pant = "image/men/pant/pant{$_POST['pant']}.jpg";
echo '<img src="'.$pant.'" width="200" height="200">';
}
echo "<br>";
if ($_POST['shoe']){
echo "Your shoe : {$_POST['shoe']} ";
$shoe = "image/men/shoe/shoe{$_POST['shoe']}.jpg";
echo '<img src="'.$shoe.'" width="200" height="200">';
}
echo "<br>";
}
// $strSQL = "INSERT INTO member (username,email,password) VALUES ('".$_POST["txtUsername"]."',
// '".$_POST["txtEmail"]."','".$_POST["txtPassword"]."')";
// $objQuery = mysqli_query($objCon,$strSQL);
// $_POST["$_SESSION["shirt"]"]
// if(isset($_POST['submit2'])){
// $shirtdes = mysqli_real_escape_string($objCon, $_POST['comment']);
// $strSQL = "INSERT INTO uniform (UserID,shirtID,pantID,shoeID) VALUES ('".$_SESSION["UserID"]."','".$_POST["$_SESSION["shirt"]"]."',
// '".$_POST["$_SESSION["pant"]"]."','".$_POST["$_SESSION["shoe"]"]."')";
// if(isset($_POST['submit2'])){
// $shirtdes = mysqli_real_escape_string($objCon, $_POST['comment']);
// $strSQL = "INSERT INTO uniform (UserID,shirtID,pantID,shoeID) VALUES ('".$_SESSION["UserID"]."','".$_POST["shirt"]."',
// '".$_POST["pant"]."','".$_POST["shoe"]."')";
// $strSQL1 = "INSERT INTO shirts (image) VALUES ('$shirt')";
// $strSQL2 = "INSERT INTO shoes (image) VALUES ('$shoe')";
// $strSQL3 = "INSERT INTO pants (image) VALUES ('$pant')";
// $objQuery = mysqli_query($objCon,$strSQL1);
// $objQuery = mysqli_query($objCon,$strSQL2);
// $objQuery = mysqli_query($objCon,$strSQL3);
// $objQuery = mysqli_query($objCon,$strSQL);
// }
mysqli_close($objCon);
?>
</div>
</div>
<div class="box-comment">
<form name="form1" method="post" action="save_success.php">
<h2>comment</h2>
<!-- <textarea name="comment" rows="5" cols="40"></textarea> -->
<input type="text" name="comment" style="width:100%;height:100px;">
</div>
<br>
<div>
<div class="right">
<button class="button-mix" name="submit2">Submit</button>
</div>
<div class="left">
<a href="menmnm.php" class="button-back">Back</a>
</div>
</div>
</form>
</body>
</html>