PHP การขายสินค้า โดยเลือกจากประเภทสินค้าและโชว์รายการสินค้าในหน้าเดียวกันทำอย่างไรคะ พี่วินคะช่วยนูทีT_T
ช่วยดูให้ทีได้มั้ยคะ คิดไม่ออกเเร้วอ่า ว่าควรทำไงดี
Date :
2012-12-05 02:03:00
By :
MiNnY_LoVer
Date :
2012-12-05 11:33:20
By :
MiNnY_LoVer
เอิ่ม มันยังไงอะ ไม่เข้าใจ
Date :
2012-12-05 11:58:53
By :
biggest59
อันนี้อาศัยหลักการที่ไม่ได้ใช้ Ajax นะคับ แต่ถ้าต้องการใช้ก็สามารถใช้ได้นะคับ ตามนี้เลยคับผม.....
script dagabase:
Code (SQL)
-- phpMyAdmin SQL Dump
-- version 2.10.3
-- http://www.phpmyadmin.net
--
-- โฮสต์: localhost
-- เวลาในการสร้าง:
-- รุ่นของเซิร์ฟเวอร์: 5.0.51
-- รุ่นของ PHP: 5.2.6
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
--
-- ฐานข้อมูล: `test1`
--
-- --------------------------------------------------------
--
-- โครงสร้างตาราง `product`
--
CREATE TABLE `product` (
`id` int(11) NOT NULL auto_increment,
`pId` varchar(10) collate utf8_unicode_ci NOT NULL,
`pName` varchar(100) collate utf8_unicode_ci NOT NULL,
`pType` varchar(100) collate utf8_unicode_ci NOT NULL,
`pPrice` float NOT NULL,
`pStock` int(11) NOT NULL,
`status` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=3 ;
--
-- dump ตาราง `product`
--
INSERT INTO `product` VALUES (1, 'P0001', 'adidas', 'football shoe', 12000.5, 2, 0);
INSERT INTO `product` VALUES (2, 'P0002', 'puma', 'football shoe', 2700.55, 5, 0);
ก่อนอื่น ต้องสร้าง DB ตามผมก่อนนะคับ เริ่มเลยนะคับ
ไฟล์ที่ 1 config.php
<?
$host="localhost";
$user_name="root";
$password="mysql";
$db="test1";
mysql_connect( $host,$user_name,$password) or die ("ติดต่อกับฐานข้อมูล Mysql ไม่ได้ ");
mysql_select_db($db) or die("เลือกฐานข้อมูลไม่ได้");
mysql_query("SET NAMES UTF8");
?>
ไฟล์ที่ 2 show_data.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>
<style type="text/css">
<!--
.style1 {color: #FFFFFF}
.style3 {color: #000000}
-->
</style>
</head>
<body>
<? include("config.php");?>
<table width="100%" border="1">
<tr bgcolor="#006699">
<td><div align="center"><span class="style1">p_id</span></div></td>
<td><div align="center"><span class="style1">p_name</span></div></td>
<td><div align="center"><span class="style1">p_type</span></div></td>
<td><div align="center"><span class="style1">p_price</span></div></td>
<td><div align="center"><span class="style1">stock</span></div></td>
<td><div align="center"><span class="style1">add</span></div></td>
</tr>
<?
$sql="select * from product order by pName";
$query=mysql_query($sql);
while($result=mysql_fetch_assoc($query)){
?>
<tr>
<td><?=$result['pId']?></td>
<td><?=$result['pName']?></td>
<td><?=$result['pType']?></td>
<td><?=number_format($result['pPrice'],2,'.',',')?></td>
<td><?=$result['pStock']?></td>
<td align="center">
<script>
function CallAjax(PID){
window.open("receive.php?PID="+PID,"MainIframe");
}
</script>
<input type="button" name="btnAdd" value="เพิ่มรายการ" onclick="CallAjax('<?=$result['pId']?>');" style="cursor:pointer;" /> </td>
</tr>
<?
}
?>
</table>
<br />
<table width="100%" border="0">
<tr>
<td> <IFRAME NAME="MainIframe" SRC="sale.php" WIDTH="100%" HEIGHT="100%" VSPACE=0 STYLE="" frameborder="0">
</IFRAME></td>
</tr>
</table>
<p> </p>
</body>
</html>
ไฟล์ที่ 3 receive.php
<?
//echo ">>>>".$PID;
include("config.php");
$sqlUp="update product set status='1' where pid='$PID' ";
mysql_query($sqlUp);
echo "<meta http-equiv=refresh content=0;URL=sale.php>";//สามารถใส่ parameter ส่งกลับได้
?>
ไฟล์ที่ 4 del.php
<?
//echo ">>>>".$PID;
include("config.php");
$sqlUp="update product set status='0' where pid='$PID' ";
mysql_query($sqlUp);
echo "<meta http-equiv=refresh content=0;URL=sale.php>";//สามารถใส่ parameter ส่งกลับได้
?>
ไฟล์ที่ 5 sale.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>
รายการขายสินค้า<br />
<table width="100%" border="1">
<tr bgcolor="#FFCC99">
<td><div align="center"><span class="style3">ชื่อสินค้า</span></div></td>
<td><div align="center"><span class="style3">ราคา/หน่วย</span></div></td>
<td><div align="center"><span class="style3">จำนวน</span></div></td>
<td><div align="center"><span class="style3">ราคารวม</span></div></td>
<td><div align="center"><span class="style3">ลบ</span></div></td>
</tr>
<?
include("config.php");
$sql="select * from product where status='1' order by pName";
$query=mysql_query($sql);
while($result=mysql_fetch_assoc($query)){
?>
<tr>
<td><div align="center">
<?=$result['pName']?>
</div></td>
<td><div align="center">
<?=number_format($result['pPrice'],2,'.',',')?>
</div></td>
<td><div align="center">
<input name="txtCount" type="text" />
</div></td>
<td><div align="center">
</div></td>
<td align="center">
<div align="center">
<script>
function del(PID){
window.open("del.php?PID="+PID,"MainIframe");
}
</script>
<input type="button" name="btnDel" value=" ลบ " onclick="del('<?=$result['pId']?>');" style="cursor:pointer;" />
</div></td>
</tr>
<? }?>
</table>
</body>
</html>
ผลลัพธ์
Date :
2012-12-05 18:17:28
By :
beerkingdom
Code (PHP)
<?php
session_start();
require_once("config.php");
require_once("check_off.php");
if(!session_is_registered("Admin_user"))
{
require_once("header1_ad.php");
header_html1("ผู้ดูแลระบบ");
}
else
{
require_once("header_ad.php"); //เรียกใช้หน้า header_ad.php
header_html("ผู้ดูแลระบบ");
}
?>
<style type="text/css">
<!--
.style2 { font-size: medium;
text-align: center;
}
.style201 {color: #000000; font-size: medium; }
.style201 {font-size: medium;
}
.style201 {font-size: medium;
}
-->
</style>
<!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=windows-874" />
<style type="text/css">
<!--
.asasa { font-size: medium;
}
.eeeeeeeee {font-size: large;
}
.eeeeeeeee {text-align: center;
}
.wetrtey {
text-align: center;
}
.-0 { font-size: 18px;
font-weight: bold;
}
.style2 { font-size: medium;
text-align: center;
}
.style201 {color: #000000; font-size: medium; }
.style201 {font-size: medium;
}
.style201 {font-size: medium;
}
.่ { font-size: 24px;
}
.่่ { font-size: 24px;
}
.่่่่ { font-size: 24px;
}
.style2011 .-0 .่่ {
font-size: 18px;
}
.style2011 {
font-size: 16px;
}
dgdfhfjgfgj {
font-size: 16px;
}
-->
</style>
<form name="from" method="post" action="">
<table width="1200" height="131" border="1" align="center" cellpadding="1" cellspacing="1">
<tr>
<th width="15" rowspan="3" align="left" nowrap="nowrap" bgcolor="#6699CC"> </th>
<th height="15" colspan="2" align="center" nowrap="nowrap" bgcolor="#6699CC"><table border="0" align="right">
<tr>
<td align="center" valign="bottom" class="eeeeeeeee"><span style="color: #FFF"></span>
<?
$thai_w=array("อาทิตย์","จันทร์","อังคาร","พุธ","พฤหัสบดี","ศุกร์","เสาร์");
$thai_n=array("มกราคม", "กุมภาพันธ์", "มีนาคม", "เมษายน", "พฤษภาคม", "มิถุนายน", "กรกฎาคม", "สิงหาคม", "กันยายน", "ตุลาคม", "พฤศจิกายน", "ธันวาคม");
$w=$thai_w[date("w")];
$d=date("d");
$n=$thai_n[date("n") -1];
$Y=date("Y") +543 ;
echo "วัน $w ที่ $d เดือน $n ปี พ.ศ. $Y ";
?>
</td>
</tr>
</table></th>
<th width="15" rowspan="3" align="right" nowrap="nowrap" bgcolor="#6699CC"> </th>
</tr>
<tr>
<td width="200" height="61" align="center" valign="top" bgcolor="#EEEEEE"><?php
require_once("manu.php"); //เรียกใช้หน้าเมนู
mn();
?>
</td>
<td width="951" align="center" bgcolor="#EEEEEE"><table border="0" align="center">
<td>ข้อมูลการขายสินค้า</td>
<td colspan="7" rowspan="5"></td>
</tr>
<tr>
<td>รหัสการขายสินค้า</td>
</tr>
<tr>
<td><?php
$host = "localhost";
$user = "root";
$passwd = "mintra";
$dbname = "kt";
$conn = mysql_connect($host,$user,$passwd) or die ("Could not connect to DBMSserver");
mysql_select_db($dbname,$conn);
// แสดงรหัสสินค้า
$sql_id = "SELECT * FROM cash WHERE 'Cash_id' LIKE '%C%' ORDER BY `Cash_id` DESC " ;
mysql_query("set NAMES tis620");
$result_id=mysql_query($sql_id);
$rs_id = mysql_fetch_array($result_id);
$max_pro1 = $rs_id[Cash_id] ;
$max_pro2 = substr($max_pro1,-4,4) + 1 ;
$max_pro3 = "000$max_pro2" ;
$max_pro4 = substr($max_pro3,-4,4) ;
if ($rs_id[Sale_id] != "")
{
$max_pro11 = "C$max_pro4";
}
else
{
$max_pro11 = "C0001";
}
echo("$max_pro11");
echo"<input name='Cash_id' type='hidden' value='$max_pro11'>";
?></td>
</tr>
<tr>
<td>วันที่ขาย</td>
</tr>
<tr>
<td><input name="Cash_name" type="text" id="Cash_name" value="" size="20" /></td>
</tr>
<tr>
<td>ชื่อลูกค้า</td>
<td>นามสกุลลูกค้า</td>
</tr>
<tr>
<td><input name="Cash_name2" type="text" id="Cash_name" value="" size="20" /></td>
<td align="left"><p>
<input name="Cus_lname" type="text" id="Cus_lname" value="" size="20" />
</p></td>
</tr>
<tr>
<td>รายละเอียดการขายสินค้า</td>
<td> </td>
</tr>
<tr>
<td>เลือกประเภทสินค้า</td>
<td> </td>
</tr>
<tr align="left" valign="middle">
<td valign="middle"><select name="se_brand" >
<?
$sql = "select * from type";
mysql_query("set NAMES tis620");
$result = mysql_query($sql);
$i=0;
echo('
<option value="" selected>เลือกสินค้า</option>
');
while($row=mysql_fetch_array($result)){ //แสดงสีที่มีทั้งหมด
echo"<option value='$row[Pro_type]' ".$se.">$row[Pro_type]</option>";
}
?>
</select>
<input name="Submit" type="submit" class="style23" value="ค้นหา" /></td>
<td colspan="6" valign="middle"><table width="650" border="0" align="center" bordercolor="#000000" class="style2011">
<tr align="center" bgcolor="#FF9966" class="-0">
<td width="95" scope="col"><span class="style21">รหัสสินค้า</span></td>
<td width="153" scope="col"><span class="style21">ชื่อสินค้า</span></td>
<td width="101" class="-0" scope="col">ประเภทสินค้า</td>
<td colspan="2" class="-0" scope="col">ราคาสินค้า</td>
<td width="65" class="-0" scope="col"><span class="style21">คงเหลือ</span></td>
<td width="86" class="-0" scope="col"> เพิ่มรายการ</td>
</tr>
<?
if($se_brand!=""){
$sql_seleect = "SELECT Pro_id,Pro_name,Pro_type,Pro_price,Pro_unit FROM product where Pro_type='$se_brand' ";
mysql_db_query($dbname,"SET NAMES tis620");
$result_select = mysql_query($sql_seleect) or die(mysql_error());
while($read_data = mysql_fetch_array($result_select)){
?>
<tr class="style2011">
<td align="left"><p class="style2011"><? echo $read_data['Pro_id']; ?></p></td>
<td align="left"><p class="style2011"><? echo $read_data['Pro_name']; ?></p></td>
<td align="center" class="style2011"><? echo $read_data['Pro_type']; ?></td>
<td width="53" align="right" class="style2011"><? echo $read_data['Pro_price']; ?></td>
<td width="63" align="center" class="style2011">บาท</td>
<td align="center" class="style2011"><? echo $read_data['Pro_unit']; ?></td>
<td align="center" class="style2011">
<script>
function CallAjax(Pro_id){
window.open("receive.php?Pro_id="+Pro_id,"MainIframe");
}
</script>
<img src="image/shopping-basket-add-icon.png" width="30" height="30" /><input type="button" name="btnAdd" value="เพิ่มรายการ" onclick="CallAjax('<?=$result['Pro_id']?>');" style="cursor:pointer;" /></td>
</tr><? }?> <? }?>
</table></td>
</tr>
<tr>
<td>showรายการขายสินค้า</td>
<td colspan="5"><p> </p></td>
</tr>
<tr>
<td colspan="6"><IFRAME NAME="MainIframe" SRC="sale0.php" WIDTH="100%" HEIGHT="100%" VSPACE=0 STYLE="" frameborder="0">
</IFRAME></td>
</tr>
</table></td>
</tr>
<tr>
<td height="30" colspan="2" align="center" bgcolor="#6699CC"><?php
require_once("manu.php"); //เรียกใช้หน้าเมนู
footer();
?></td>
</tr>
</table>
<p> </p>
ตอบความคิดเห็นที่ : 6 เขียนโดย : beerkingdom เมื่อวันที่ 2012-12-05 18:17:28
รายละเอียดของการตอบ ::
หนูไม่รุ้จะแก้ยังไงอ่าคะ แก้เท่าไหร่มันก้อไม่ขึ้นให้สักที พี่ช่วยดูหน่อยได้ป่ะคะ
Date :
2012-12-06 14:01:19
By :
MiNnY_LoVer
ใครก้อได้ช่วยที แก้ไม่ได้เเร้วอ่า
Date :
2012-12-06 15:49:45
By :
MiNnY_LoVer
จากที่ดูครับ บรรทัดที่ 206 เหมือนกับว่าเรา สร้าง รูปตะกร้ามา แล้ว ให้มันกดแล้วจะขึ้น ข้อมูลที่ต้องการใช่ไหมครับ
แต่จากที่ดูๆ ยังไม่เห็น ว่าจะมี link ไปหน้าใหม่ หรือเรียกอะไรออกมา
เห็นแต่ id ที่เราเอามาจาก select * form Type
ถ้าเราจะเอาออกมาตามที่บอกไว้ในตอนต้น
ก็ให้ สร้างเลียนแบบคล้ายๆ
บรรทัด 188 ถึง 199
เหมือนกับว่าเรียกสิ่งที่ต้องการออกมาอีกน้าหนึ่งอะครับ
พอจะเข้าใจเราอะป่าว
Date :
2012-12-06 16:12:15
By :
INTz
จนปัญญาแร้วอ่า
Date :
2012-12-06 21:14:00
By :
MiNnY_LoVer
หน้าที่มันทำงานได้ปกติ
Code (PHP)
<meta http-equiv="Content-Type" content="text/html; charset=windows-874" />
<title>Untitled Document</title>
<style type="text/css">
<!--
.style1 {color: #FFFFFF}
-->
</style>
</head>
<body>
<p>
<? include("config.php");?>
</p>
<form action="" method="post" name="from" id="from">
<select name="se_brand" >
<?
$sql = "select * from type";
mysql_query("set NAMES tis620");
$result = mysql_query($sql);
$i=0;
echo('
<option value="" selected>เลือกสินค้า</option>
');
while($row=mysql_fetch_array($result)){ //แสดงสีที่มีทั้งหมด
echo"<option value='$row[Pro_type]' ".$se.">$row[Pro_type]</option>";
}
?>
</select>
<input name="Submit" type="submit" class="style23" value="ค้นหา" />
</form>
</p>
<table width="100%" border="1">
<tr bgcolor="#006699">
<td><div align="center"><span class="style1">Pro_id</span></div></td>
<td><div align="center"><span class="style1">Pro_name</span></div></td>
<td><div align="center"><span class="style1">Pro_type</span></div></td>
<td><div align="center"><span class="style1">p_price</span></div></td>
<td><div align="center"><span class="style1">stock</span></div></td>
<td><div align="center"><span class="style1">add</span></div></td>
</tr>
<?
$sql= "SELECT * FROM product where Pro_type='$se_brand' ";
$query=mysql_query($sql);
mysql_query("SET NAMES UTF8");
while($result=mysql_fetch_assoc($query)){
?>
<tr>
<td><?=$result['Pro_id']?></td>
<td><?=$result['Pro_name']?></td>
<td><?=$result['Pro_type']?></td>
<td><?=number_format($result['Pro_price'],2,'.',',')?></td>
<td><?=$result['Pro_unit']?></td>
<td align="center"><script>
function CallAjax(Pro_id){
window.open("receive.php?Pro_id="+Pro_id,"MainIframe");
}
</script>
<input type="button" name="btnAdd" value="เพิ่มรายการ" onclick="CallAjax('<?=$result['Pro_id']?>');" style="cursor:pointer;" /></td>
</tr>
<?
}
?>
</table>
<br />
<table width="100%" border="0">
<tr>
<td><iframe src="sale0.php" name="MainIframe" width="100%" height="100%" frameborder="0" vspace="0" id="MainIframe" style=""> </iframe></td>
</tr>
</table>
</body>
ประวัติการแก้ไข 2012-12-07 17:17:21
Date :
2012-12-07 17:16:38
By :
MiNnY_LoVer
แต่พอมาอยุ่ในตาราง มันกับไม่ทำงาน
Code (PHP)
<meta http-equiv="Content-Type" content="text/html; charset=windows-874" />
<title>Untitled Document</title>
<style type="text/css">
<!--
.style1 {color: #FFFFFF}
.style3 {color: #000000}
-->
</style>
</head>
<body>
<table width="1200" height="131" border="1" align="center" cellpadding="1" cellspacing="1">
<tr>
<th width="15" rowspan="3" align="left" nowrap="nowrap" bgcolor="#6699CC"> </th>
<th height="15" colspan="2" align="center" nowrap="nowrap" bgcolor="#6699CC"><table border="0" align="right">
<tr>
<td align="center" valign="bottom" class="eeeeeeeee"><span style="color: #FFF"></span>
<?
$thai_w=array("อาทิตย์","จันทร์","อังคาร","พุธ","พฤหัสบดี","ศุกร์","เสาร์");
$thai_n=array("มกราคม", "กุมภาพันธ์", "มีนาคม", "เมษายน", "พฤษภาคม", "มิถุนายน", "กรกฎาคม", "สิงหาคม", "กันยายน", "ตุลาคม", "พฤศจิกายน", "ธันวาคม");
$w=$thai_w[date("w")];
$d=date("d");
$n=$thai_n[date("n") -1];
$Y=date("Y") +543 ;
echo "วัน $w ที่ $d เดือน $n ปี พ.ศ. $Y ";
?>
</td>
</tr>
</table></th>
<th width="15" rowspan="3" align="right" nowrap="nowrap" bgcolor="#6699CC"> </th>
</tr>
<tr>
<td width="200" height="61" align="center" valign="top" bgcolor="#EEEEEE"><?php
require_once("manu.php"); //เรียกใช้หน้าเมนู
mn();
?>
</td>
<td width="951" align="center" bgcolor="#EEEEEE"><p>
<? include("config.php");?>
</p>
<form name="from" method="post" action="">
<select name="se_brand" >
<?
$sql = "select * from type";
mysql_query("set NAMES tis620");
$result = mysql_query($sql);
$i=0;
echo('
<option value="" selected>เลือกสินค้า</option>
');
while($row=mysql_fetch_array($result)){ //แสดงสีที่มีทั้งหมด
echo"<option value='$row[Pro_type]' ".$se.">$row[Pro_type]</option>";
}
?>
</select>
<input name="Submit" type="submit" class="style23" value="ค้นหา" />
</form>
</p>
<table width="100%" border="1">
<tr bgcolor="#006699">
<td><div align="center"><span class="style1">Pro_id</span></div></td>
<td><div align="center"><span class="style1">Pro_name</span></div></td>
<td><div align="center"><span class="style1">Pro_type</span></div></td>
<td><div align="center"><span class="style1">p_price</span></div></td>
<td><div align="center"><span class="style1">stock</span></div></td>
<td><div align="center"><span class="style1">add</span></div></td>
</tr>
<?
$sql= "SELECT * FROM product where Pro_type='$se_brand' ";
$query=mysql_query($sql);
while($result=mysql_fetch_assoc($query)){
?>
<tr>
<td><?=$result['Pro_id']?></td>
<td><?=$result['Pro_name']?></td>
<td><?=$result['Pro_type']?></td>
<td><?=number_format($result['Pro_price'],2,'.',',')?></td>
<td><?=$result['Pro_unit']?></td>
<td align="center"><script>
function CallAjax(Pro_id){
window.open("receive.php?Pro_id="+Pro_id,"MainIframe");
}
</script>
<input type="button" name="btnAdd" value="เพิ่มรายการ" onclick="CallAjax('<?=$result['Pro_id']?>');" style="cursor:pointer;" /></td>
</tr>
<?
}
?>
</table>
<br />
<table width="100%" border="0">
<tr>
<td><IFRAME NAME="MainIframe" SRC="sale0.php" WIDTH="100%" HEIGHT="100%" VSPACE=0 STYLE="" frameborder="0"> </IFRAME></td>
</tr>
</table>
<p> </p></td>
</tr>
<tr>
<td height="30" colspan="2" align="center" bgcolor="#6699CC"><?php
require_once("manu.php"); //เรียกใช้หน้าเมนู
footer();
?></td>
</tr>
</table>
</body>
ประวัติการแก้ไข 2012-12-07 17:20:04
Date :
2012-12-07 17:19:40
By :
MiNnY_LoVer
เรียกไปยัง Iframe ถูกต้องป่าวคับ
Date :
2012-12-09 21:37:09
By :
beerkingdom
link ที่ส่งไปอ่ะคับ มีไฟล์ receive.php รึยังเอ่ย...ส่งโปรเจคเข้าเมล์พี่ก็ได้เด๋วพี่ดูให้คับ..เอาไฟล์ที่เกี่ยวข้องกับฐานข้อมูลที่เกี่ยวข้องอ่ะครับส่งมาที่เมล์ก้ได้คับผม.. [email protected]
Date :
2012-12-09 21:40:43
By :
beerkingdom
อยากทราบว่า copy โค้ดมาเหมือนกันหมดแต่ส่งสัยทำไมพอกดเพิ่มรายการแต่ไม่มาที่หน้า Sale
Date :
2015-06-02 23:31:10
By :
ggggg
Load balance : Server 05