-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathitem.php
82 lines (74 loc) · 2.31 KB
/
item.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
79
80
81
82
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>アイテム詳細</title>
<link rel="stylesheet" href="css/main.css">
<script src="js/jquery-1.11.0.min.js"></script>
<script src="js/item.js"></script>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#">blog</a></li>
<li><a href="#">about</a></li>
<li><a href="index.php">home</a></li>
</ul>
</nav>
<div class="shop_logo">
<img src="img/shop_logo.png" alt="Shop Logo">
</div>
</header>
<hr id="anchor" class="dots">
<h1>商品紹介</h1>
<section class="iteminfo">
<div class="picbg"></div>
<?php echo '<img class="picture" src="'.$_POST['image_url'].'" alt="Picture"/>';?>
<image class="picmask" src="img/picmask.png" />
<div class="itemname">
<p>
<?php echo $_POST['item_name'];?>
</p>
</div>
<div class="category">
<p>
<?php
echo $_POST['category']."<br> ".$_POST['color']."<br> ".$_POST['size'];
?>
</p>
</div>
<div class="cart">
<img src="img/carticon.png" />
<p>ショッピング
<br> カートに入れる</p>
</div>
<div class="price">
<?php
$str = "";
$price = $_POST['price'];
if($price > 99999999) {
$str = floor($price/100000000).'億';
$price %= 100000000;
}
if($price > 9999) {
$str .= floor($price/10000).'万';
$price %= 10000;
}
if($price == 0 ) {$price = '';}
$str .= $price;
echo '<p>'.$str.'円</p>';
?>
</div>
<div class="detail">
<p>
<?php echo $_POST['item_detail'];?>
</p>
</div>
</section>
</body>
<hr class="dots">
<footer>
<p>copyright Gossip Gallery Inc.</p>
</footer>
</html>