-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsave_women.php
More file actions
141 lines (116 loc) · 3.64 KB
/
Copy pathsave_women.php
File metadata and controls
141 lines (116 loc) · 3.64 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
<?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
session_start();
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
if(isset($_POST['submit'])){
$_SESSION["shirt"]=$_POST["shirt"];
$_SESSION["pant"]=$_POST["pant"];
$_SESSION["shoe"]=$_POST["shoe"];
// if ($_POST['shirt']){
// echo "Your shirt :";
// if ($_POST['shirt']=="shirt1") {
// // $selected_val = $_POST['shirt'];
// // echo "You have selected shirt :" .$selected_val;
// echo "<img src=\"http://oi43.tinypic.com/2psrew2.jpg\" width=\"100\" height=\"100\" />";
// }
// }
if ($_POST['shirt']){
echo "Your shirt : {$_POST['shirt']} ";
$shirt = "image/women/shirt/shirt{$_POST['shirt']}.jpg";
echo '<img src="'.$shirt.'" width="200" height="200">';
}
echo "<br>";
if ($_POST['pant']){
echo "Your pant : {$_POST['pant']} ";
$pant = "image/women/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/women/shoe/shoe{$_POST['shoe']}.jpg";
echo '<img src="'.$shoe.'" width="200" height="200">';
}
echo "<br>";
}
// $strSQL = "SELECT * FROM uniform ";
// $objQuery = mysqli_query($objCon,$strSQL);
// $objResult = mysqli_fetch_array($objQuery);
// $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);
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="womenmnm.php" class="button-back">Back</a>
</div>
</div>
</form>
</body>
</html>