ขอปรึกษาเรื่อง เก็บค่าที่ได้จากการค้นหา ไปใน option หน่อยคับ ปล.งงตัวเอง
ผมค้นหาสินค้าที่จะสั่งซื้อแล้ว ได้ผลลัพธิ์แล้ว
<?
if (empty($keyword))
{
echo"<B>กรอกชื่อสินค้า</B>";
exit();
}
$host="localhost";
$username="root";
$pass_word="";
$db="dbchai";
$tb="product";
mysql_connect( $host,$username,$pass_word) or die ("ติดต่อกับฐานข้อมูล Mysql ไม่ได้ ");
mysql_select_db($db) or die("เลือกฐานข้อมูลไม่ได้");
$sql = "SELECT a.*,b.* FROM product a LEFT JOIN company b ON a.com_id = b.com_id WHERE a.pro_title LIKE '%$keyword%'";
/* ตั้งค่า แสดงผลต่อหน้า $Per_Page */
$Per_Page =5; // แสดงหน้าละ 5
if(!$Page)
$Page=1;
$Prev_Page = $Page-1;
$Next_Page = $Page+1;
$result = mysql_query($sql);
$Page_start = ($Per_Page*$Page)-$Per_Page;
$Num_Rows = mysql_num_rows($result);
if($Num_Rows<=$Per_Page)
$Num_Pages =1;
else if(($Num_Rows % $Per_Page)==0)
$Num_Pages =($Num_Rows/$Per_Page) ;
else
$Num_Pages =($Num_Rows/$Per_Page) +1;
$Num_Pages = (int)$Num_Pages;
if(($Page>$Num_Pages) || ($Page<0))
print "<center><b>จำนวน $Page มากกว่า $Num_Pages ยังไม่มีข้อความ<b></center>";
$sql = "SELECT a.*,b.* FROM product a LEFT JOIN company b ON a.com_id = b.com_id WHERE a.pro_title LIKE '%$keyword%' order by pro_id asc LIMIT $Page_start , $Per_Page";
//ส่วนแสดงผล
$result = mysql_query($sql);
?>
แล้วทำลิงค์ไปสั่งซื้อสินค้า จากโค้ด
<?
session_start();
$com_name =$company_name;
$comname = $company;
include( "configcart.php" );
Conn2DB();
$strSQL2 = "SELECT * FROM company_order";
$result1 = mysql_query( $strSQL2, $conn );
$num = mysql_num_rows($result1);
$strSQL3= "SELECT * FROM company_order WHERE no=$num";
$result2 = mysql_query( $strSQL3, $conn );
$rs2 = mysql_fetch_array( $result2);
$newid = $rs2[orders_id]+1;
session_register( "com_name" );
session_register( "comname" );
session_register( "newid" );
CloseDB();
?>
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874">
</head>
<body>
<p align="center"><font color="#0066FF" size="-1" face="Microsoft Sans Serif, MS Sans Serif, sans-serif"><strong><font color="#FF0000">กรอกรายละเอียดสินค้าที่ต้องการสั่งซื้อ</font></strong></font></p>
<font size="-1" face="Microsoft Sans Serif, MS Sans Serif, sans-serif"><br>
</font>
<form name="form1" method="post" action="addcom_product.php">
<div align="center"><font size="-1" face="Microsoft Sans Serif, MS Sans Serif, sans-serif">
ชื่อสินค้า
<select name="product_name"id="product_name">
<?php
Conn2DB();
$strSQL = "SELECT * FROM product ";
$strSQL = $strSQL . "WHERE com_id = $comname";
$result = mysql_query( $strSQL, $conn );
while ( $rs = mysql_fetch_array( $result ) )
{
echo "<option value=\"$rs[pro_id]\">$rs[pro_title]</option>\n";
}
CloseDB();
?>
มันต้องทำยังงัยหรอคับ ปล.ท่านใดดูแล้ว งง.ไม่แปลก ตัวผมยัง งง ตัวเองเลย อิอิ
พี่คนไหนเมตตา อยากช่วยลูกนกลูกกา อีเมส์ [email protected] Tag : - - - -
Date :
2009-06-01 23:47:05
By :
cm2i
View :
896
Reply :
1
clear แล้วนะ
Date :
2009-06-02 01:25:33
By :
plakrim
Load balance : Server 00