|
|
|
ไม่สามารถแก้ไขหรืออัพเดทราคาได้ ช่วยหน่อยค่ะ ราคาเปลี่ยนแปลงไม่ได้ จะแสดงเป็น 999.99 เสมอ |
|
|
|
|
|
|
|
ราคาเปลี่ยนแปลงไม่ได้ จะแสดงเป็น 999.99 เสมอ
<?php
include( "../phpConfigCart.php" );
$msg = "";
if ( $Submit == "เพิ่มสินค้า" )
{
Conn2DB();
if ( empty( $pro_id ) ){
$msg = $msg . "โปรดระบุ <font color=\"#0066ff\">รหัสสินค้า</font> <br>\n";}
else{ $ChkproID = ChkproID( $pro_id );
if ( $ChkproID == true )
$msg = $msg . "<font color=\"#0066ff\">รหัสสินค้านี้ มีอยู่แล้ว</font> <br>\n";}
if ( empty( $pro_title ) )
$msg = $msg . "โปรดระบุ <font color=\"#0066ff\">ชื่อ/รุ่นสินค้า</font> <br>\n";
if ( empty( $pro_time ) )
$msg = $msg . "โปรดระบุ <font color=\"#0066ff\">ประกันสินค้า</font> <br>\n";
if ( empty( $pro_came ) )
$msg = $msg . "โปรดระบุ <font color=\"#0066ff\">ประกันเปลี่ยนสินค้า</font> <br>\n";
if ( empty( $pro_unit ) )
$msg = $msg . "โปรดระบุ <font color=\"#0066ff\">จำนวนคงเหลือ</font> <br>\n";
if ( empty( $pro_free ) )
$msg = $msg . "โปรดระบุ <font color=\"#0066ff\">ของแถม </font> <br>\n";
if ( empty( $pro_price ) )
$msg = $msg . "โปรดระบุ <font color=\"#0066ff\">ราคาขาย</font> <br>\n";
if ( empty( $pro_price1 ) )
$msg = $msg . "โปรดระบุ <font color=\"#0066ff\">ราคาต้นทุน</font> <br>\n";
if ( empty( $pro_note ) )
$msg = $msg . "โปรดระบุ <font color=\"#0066ff\">รายละเอียด</font> <br>\n";
if ( $ChkproID == false && ! empty( $pro_title ) && ! empty( $pro_time ) && ! empty( $pro_came ) && ! empty( $pro_unit ) && ! empty( $pro_free ) && ! empty( $pro_price ) )
{
if ( isset( $pro_image ) && $pro_image_type == "image/gif" )
{
$pro_image_file = "$pro_id" . ".gif";
copy( $pro_image, "$ImgDir\\$pro_image_file" ) or die( "ไม่สามารถ Copy ได้" );
}
else
$pro_image_file = "noimg.gif";
$pro_price = ereg_replace( "[^0-9.]", "", $pro_price );
$strSQL = "INSERT INTO product (pro_id, com_id,cate_id, pro_title, pro_time, pro_came, ";
$strSQL = $strSQL . "pro_image, pro_unit, pro_price1, pro_price, pro_free, pro_note, pro_status) ";
$strSQL = $strSQL . "VALUES ( $pro_id, $com_id,$cate_id, '$pro_title', '$pro_time', '$pro_came', ";
$strSQL = $strSQL . "'$pro_image_file', $pro_unit, $pro_price1, $pro_price,'$pro_free', '$pro_note', '$pro_status' ) ";
mysql_query( $strSQL, $conn )
or die ( "การกรอกข้อมูลมีข้อผิดพลาดเกิดขึ้น กรุณาตรวจสอบดูอีกครั้ง") . mysql_error();
$msg = $msg . "<font color=\"#0066ff\">เพิ่มข้อมูลสินค้า เรียบร้อยแล้ว</font> <br>\n";
$pro_id = "";
$pro_title = "";
$pro_time = "";
$pro_came = "";
$pro_unit = "";
$pro_price = "";
$pro_price1 = "";
$pro_free = "";
$pro_note = "";
}
CloseDB();
}
?>
<html>
<head>
<STYLE type=text/css>BODY {
SCROLLBAR-FACE-COLOR: #71B8FF; SCROLLBAR-HIGHLIGHT-COLOR: #ffffff; SCROLLBAR-SHADOW-COLOR: #e0f0ff; SCROLLBAR-3DLIGHT-COLOR: #CAE4FF; SCROLLBAR-ARROW-COLOR: #ffffff; SCROLLBAR-TRACK-COLOR: #e0f0ff; SCROLLBAR-DARKSHADOW-COLOR: #000000
}
</STYLE>
<title>เพิ่มสินค้า</title>
<link rel="stylesheet" href="../cart.css" type="text/css">
<meta http-equiv="Content-Type" content="text/html; charset=windows-874"></head>
<body background="">
<div align="center">
<p class="Tahoma13" align = "left"><b><?echo $msg; ?></b>
<form method="post" action="<?echo $PHP_SELF; ?>" enctype="multipart/form-data">
<table width="496" border="0" cellspacing="0" cellpadding="3" align="center">
<tr align="center" bgcolor="#CAE4FF">
<td colspan="3" class="Tahoma13"><b><font color="#000000">เพิ่มสินค้า</font></b></td>
</tr>
<tr bgcolor="#EAEAEA">
<td width="165" align="right" class="Tahoma13"><font color="#000000"><b>รหัสสินค้า</b></font></td>
<td width="8" class="Tahoma13"><b><font color="#000000">*</font></b></td>
<td class="Tahoma13" width="305"> <input type="text" name="pro_id" maxlength="6" size="10" value="<?echo $pro_id;?>">
<font color="#FF0000">( เฉพาะตัวเลข 6 หลัก) </font></td>
</tr>
<tr bgcolor="#EAEAEA">
<td align="right" class="Tahoma13"><font color="#000000"><b>บริษัท</b></font></td>
<td class="Tahoma13"><b><font color="#000000">*</font></b></td>
<td class="Tahoma13"><select name="com_id">
<?php
Conn2DB();
$strSQL = "SELECT * FROM company";
$result = mysql_query( $strSQL, $conn );
while ( $rs = mysql_fetch_array( $result ) )
{
echo "<option value=\"$rs[com_id]\">$rs[com_name]</option>\n";
}
CloseDB();
?>
</select></td>
</tr>
<tr bgcolor="#EAEAEA">
<td width="165" align="right" class="Tahoma13"><font color="#000000"><b>ประเภท</b></font></td>
<td width="8" class="Tahoma13"><b><font color="#000000">*</font></b></td>
<td width="305" class="Tahoma13"> <select name="cate_id">
<?php
Conn2DB();
$strSQL = "SELECT * FROM category";
$result = mysql_query( $strSQL, $conn );
while ( $rs = mysql_fetch_array( $result ) )
{
echo "<option value=\"$rs[cate_id]\">$rs[cate_name]</option>\n";
}
CloseDB();
?>
</select> </td>
</tr>
<?php
echo "<Tr ><Td bgcolor=\"#EAEAEA\"width=\"200\" align=\"right\"><font face=\"Tahoma13\" size=\"2\"><b> สถานะสินค้า *</b></Td><Td bgcolor=\"#EAEAEA\"><td bgcolor=\"#EAEAEA\">
<select name =\"pro_status\">
<option value=\" 1\">สินค้าใหม่</option>
<option value=\" 0\">สินค้าเก่า</option>
</select>
</td></td></font></Tr>";
?>
<tr bgcolor="#EAEAEA">
<td width="165" align="right" class="Tahoma13"><font color="#000000"><b>ชื่อ/รุ่น
สินค้า</b></font></td>
<td width="8" class="Tahoma13"><b><font color="#000000">*</font></b></td>
<td width="305" class="Tahoma13"> <input type="text" name="pro_title" size="30" value="<?echo $pro_title;?>">
</td>
</tr>
<tr bgcolor="#EAEAEA">
<td width="165" align="right" class="Tahoma13"><font color="#000000"><b>ประกันสินค้า</b></font></td>
<td width="8" class="Tahoma13"><b><font color="#000000">*</font></b></td>
<td class="Tahoma13" width="305"> <input type="text" name="pro_time" size="30" maxlength="30" value="<?echo $pro_time;?>">
</td>
</tr>
<tr bgcolor="#EAEAEA">
<td width="165" align="right" class="Tahoma13"><font color="#000000"><b>ประกันเปลี่ยนสินค้า</b></font></td>
<td width="8" class="Tahoma13"><b><font color="#000000">*</font></b></td>
<td class="Tahoma13" width="305"> <input type="text" name="pro_came" maxlength="150" size="30" value="<?echo $pro_came;?>">
</td>
</tr>
<tr bgcolor="#EAEAEA">
<td width="165" align="right" class="Tahoma13"><font color="#000000"><b>รูปสินค้า</b></font></td>
<td width="8" class="Tahoma13"> </td>
<td class="Tahoma13" width="305"> <input name="pro_image" type="file" id="pro_image" size="30">
</td>
</tr>
<tr bgcolor="#EAEAEA">
<td width="165" align="right" class="Tahoma13"><font color="#000000"><b>จำนวนคงเหลือ</b></font></td>
<td width="8" class="Tahoma13"><b><font color="#000000">*</font></b></td>
<td class="Tahoma13" width="305"> <input type="text" name="pro_unit" maxlength="30" size="30" value="<?echo $pro_unit;?>">
</td>
</tr>
<tr bgcolor="#EAEAEA">
<td width="165" align="right" class="Tahoma13"><font color="#000000"><b>ของแถม</b></font></td>
<td width="8" class="Tahoma13"><b><font color="#000000">*</font></b></td>
<td class="Tahoma13" width="305"> <input type="text" name="pro_free" maxlength="30" size="30" value="<?echo $pro_free;?>">
</td>
</tr>
<tr bgcolor="#EAEAEA">
<td align="right" class="Tahoma13"><font color="#000000"><b>ราคาต้นทุน</b></font></td>
<td class="Tahoma13"><b><font color="#000000">*</font></b></td>
<td class="Tahoma13"> <input type="text" name="pro_price1" maxlength="20" size="10" value="<?echo $pro_price1;?>">
( เฉพาะตัวเลข) </td>
</tr>
<tr bgcolor="#EAEAEA">
<td width="165" align="right" class="Tahoma13"><font color="#000000"><b>ราคาขาย</b></font></td>
<td width="8" class="Tahoma13"><b><font color="#000000">*</font></b></td>
<td class="Tahoma13" width="305"> <input type="text" name="pro_price" maxlength="20" size="10" value="<?echo $pro_price;?>">
( เฉพาะตัวเลข) </td>
</tr>
<tr bgcolor="#EAEAEA">
<td width="165" align="right" bgcolor="#EAEAEA" class="Tahoma13"><font color="#000000"><b>รายละเอียด</b></font></td>
<td width="8" class="Tahoma13"><b><font color="#000000">*</font></b></td>
<td width="305" class="Tahoma13"> <textarea name="pro_note" cols="45" wrap="VIRTUAL" rows="5"><?echo $pro_note;?></textarea>
</td>
</tr>
<tr bgcolor="#EAEAEA">
<td width="165" align="right" class="Tahoma13"> </td>
<td width="8" class="Tahoma13"> </td>
<td width="305" class="Tahoma13"> <input type="submit" name="Submit" value="เพิ่มสินค้า">
</td>
</tr>
<tr bgcolor="#DCFF93">
<td width="165" align="right" bgcolor="#EAEAEA" class="Tahoma13"> </td>
<td width="8" bgcolor="#EAEAEA" class="Tahoma13"> </td>
<td width="305" bgcolor="#EAEAEA" class="Tahoma13"> </td>
</tr>
</table>
</form>
<p> </p>
</div>
</body>
</html>
Tag : - - - -
|
|
|
|
|
|
Date :
2009-08-27 00:07:07 |
By :
fitree |
View :
752 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใส่number_format() ล้อมตัวแปรครับ
|
|
|
|
|
Date :
2009-08-27 09:10:12 |
By :
apicha31 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|