|
|
|
ขอสอบถามเรื่องกรานค้นหาข้อมูลในตะราง " สินค้า " ในระบบ shopping_cart |
|
|
|
|
|
|
|
รบกวนพี่ๆ เพื่อนๆช่วยดูที่ เรื่องกรานค้นหาข้อมูลในตะราง " สินค้า " ของระบบ " shopping_cart " คือว่าผมต้องกรานที่จะค้นหาในรูปแบบ
" รหัสสินค้า " " ชื่อสินค้า " " รายละเอียดสินค้า "
Code (SQL)
CREATE TABLE `products` (
`id` int(11) NOT NULL auto_increment,
`product_code` varchar(60) collate utf8_unicode_ci NOT NULL,
`product_name` varchar(60) collate utf8_unicode_ci NOT NULL,
`product_desc` tinytext collate utf8_unicode_ci NOT NULL,
`product_img_name` varchar(60) collate utf8_unicode_ci NOT NULL,
`product_price` decimal(10,2) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `product_code` (`product_code`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=4 ;
--
-- dump ตาราง `products`
--
INSERT INTO `products` VALUES (1, 'P00001', 'iPhone 5s', 'โทรศัพท์คุณภาพยี่ห้อ Apple', 'iphone5s.jpg', '25000.00');
INSERT INTO `products` VALUES (2, 'P00002', 'Samsung Galaxy S4', 'โทรศัพท Andriod ยอดนิยม', 'ss4.jpg', '17890.00');
INSERT INTO `products` VALUES (3, 'P00003', 'Samsung Galaxy Note3', 'โทรศัพท์สำหรับคนชอบจด', 'note3.jpg', '23000.00');
Code (PHP)
<?php
session_start();
require 'connect.php';
$meSql = "SELECT * FROM products ";
$meQuery = mysql_query($meSql);
$action = isset($_GET['a']) ? $_GET['a'] : "";
$itemCount = isset($_SESSION['cart']) ? count($_SESSION['cart']) : 0;
if(isset($_SESSION['qty'])){
$meQty = 0;
foreach($_SESSION['qty'] as $meItem){
$meQty = $meQty + $meItem;
}
}else{
$meQty=0;
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>itoffside.com shopping cart</title>
<!-- Bootstrap -->
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="bootstrap/css/nava.css" rel="stylesheet">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<!-- Static navbar -->
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Shopping Cart - ItOffside.com</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="index.php">หน้าแรกสินค้า</a></li>
<li><a href="cart.php">ตะกร้าสินค้าของฉัน <span class="badge"><?php echo $meQty; ?></span></a></li>
</ul>
</div><!--/.nav-collapse -->
</div><!--/.container-fluid -->
</div>
<center>
<!-- Main component for a primary marketing message or call to action -->
<form name="frmSearch" method="post" action="<?=$_SERVER['SCRIPT_NAME'];?>">
<table width="599" border="0">
<tr>
<th>Select
<select name="ddlSelect" id="ddlSelect">
<option>- Select -</option>
<option value="product_code" <?if($_POST["ddlSelect"]=="product_code"){echo"selected";}?>>รหัสสินค้า</option>
<option value="product_name" <?if($_POST["ddlSelect"]=="product_name"){echo"selected";}?>>ชื่อสินค้า</option>
<option value="product_desc" <?if($_POST["ddlSelect"]=="product_desc"){echo"selected";}?>>รายละเอียด</option>
</select>
Keyword
<input name="txtKeyword" type="text" id="txtKeyword" value="<?=$_POST["txtKeyword"];?>">
<input type="submit" value="Search"></th>
</tr>
</table>
</form>
</center>
<h3>หน้าแรกของสินค้า</h3>
<?php
if($action == 'exists'){
echo "<div class=\"alert alert-warning\">เพิ่มจำนวนสินค้าแล้ว</div>";
}
if($action == 'add'){
echo "<div class=\"alert alert-success\">เพิ่มสินค้าลงในตะกร้าเรียบร้อยแล้ว</div>";
}
if($action == 'order'){
echo "<div class=\"alert alert-success\">สั่งซื้อสินค้าเรียบร้อยแล้ว</div>";
}
if($action == 'orderfail'){
echo "<div class=\"alert alert-warning\">สั่งซื้อสินค้าไม่สำเร็จ มีข้อผิดพลาดเกิดขึ้นกรุณาลองใหม่อีกครั้ง</div>";
}
?>
<table class="table table-striped">
<thead>
<tr>
<th>#</th>
<th>รหัสสินค้า</th>
<th>ชื่อสินค้า</th>
<th>รายละเอียด</th>
<th>ราคา</th>
<th> </th>
</tr>
</thead>
<tbody>
<?php
while ($meResult = mysql_fetch_assoc($meQuery))
{
?>
<tr>
<td><img src="images/<?php echo $meResult['product_img_name']; ?>" border="0"></td>
<td><?php echo $meResult['product_code']; ?></td>
<td><?php echo $meResult['product_name']; ?></td>
<td><?php echo $meResult['product_desc']; ?></td>
<td><?php echo number_format($meResult['product_price'],2); ?></td>
<td>
<a class="btn btn-primary btn-lg" href="updatecart.php?itemId=<?php echo $meResult['id']; ?>" role="button">
<span class="glyphicon glyphicon-shopping-cart"></span>
หยิบใส่ตะกร้า</a>
</td>
</tr>
<?php
}
?>
</tbody>
</table>
</div> <!-- /container -->
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="bootstrap/js/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="bootstrap/js/bootstrap.min.js"></script>
</body>
</html>
<?php
mysql_close();
?>
Tag : PHP, MySQL, HTML/CSS, JavaScript, Ajax, jQuery
|
|
|
|
|
|
Date :
2014-10-17 10:49:59 |
By :
poulim |
View :
1384 |
Reply :
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
$ProductName = $_POST["ddlSelect"];
$Sql = mysql_query("SELECT * FROM Table_name WHERE ฟิวชื่อสินค้า = '%$ProductName$'");
while($Results = mysql_fetch_array($Sql)){
echo $Results[รหัสสินค้า]."<br>";
echo $Results[ชื่อสินค้า]."<br>";
echo $Results[รายละเอียดสินค้า]."<br>";
}
อย่างนี้ป่าวจ๊ะ
|
|
|
|
|
Date :
2014-10-17 11:39:48 |
By :
bunchuai |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
$strSQL = "SELECT * FROM products WHERE ".$_GET['SELECT']." LIKE '%".$_GET['KeyWord']."%' ";
|
|
|
|
|
Date :
2014-10-17 11:51:06 |
By :
raksaksaethao |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณพี่ๆยังไน่ได้อะครับ มือใหม่ครับผม ขอขยายความอีกหน่อยครับผม
|
ประวัติการแก้ไข 2014-10-17 14:59:01
|
|
|
|
Date :
2014-10-17 14:55:56 |
By :
poulim |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลอง echo Sql ดูว่ามันเก็ดไรขึ้น แล้วเอามา ให้ดูหน่อยน่ะครับ
|
|
|
|
|
Date :
2014-10-17 15:15:31 |
By :
bunchuai |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<form action="pro_search.php" method="get">
<div align="center">SELECT
<select name="SELECT" id="SELECT">
<option value="product_code">รหัสสินค้า</option>
<option value="product_name ">ชื่อสินค้า</option>
<option value="product_desc">รายละเอียดสินค้า</option>
</select>
KEYWORD
<input type="text" name="KeyWord" id="KeyWord" />
<input type="submit" name="Submit" value="SEARCH" />
</div>
</form>
</p>
<table width="680" border="1" align="center">
<tr align="center" valign="top">
<td width="116">รหัสสินค้า</td>
<td width="104">ชื่อสินค้า</td>
<td width="216">รายละเอียดสินค้า</td>
<td width="216">ราคา</td>
</tr>
<?PHP
$objConnect = mysql_connect("localhost","root","1234") or die("Error Connect to Database");
$objDB = mysql_select_db("pro");
if(!empty($_GET['Submit'])){
$strSQL = "SELECT * FROM products WHERE ".$_GET['SELECT']." LIKE '%".$_GET['KeyWord']."%' ";
}else{
$strSQL = "SELECT * FROM products ";
}
mysql_query("SET NAMES UTF8");
echo $strSQL;
$objQuery = mysql_query($strSQL);
while($objResult = mysql_fetch_array($objQuery)){
?>
<tr>
<td><?=$objResult['product_code']?></td>
<td><?=$objResult['product_name']?></td>
<td><?=$objResult['product_desc']?></td>
<td><?=$objResult['product_price']?></td>
</tr>
<? }?>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
</table>
</body>
</html>
|
|
|
|
|
Date :
2014-10-17 17:48:30 |
By :
raksaksaethao |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|