รบกวนดู code ให้หน่อยได้ไหมคับผมทำการบันทึกของมูลได้ไม่ครบคับ
รบกวนดูโค้ดให้ผมหน่อยได้ไหมคับผมทำการบันทึก checkbox ไม่เป็นคับแล้วจะให้ในฐานข้อมูลขึ้นสถานะคับแล้วการอัพโหลดรูปผมก็ทำไม่เป็นคับรบกวบช่วยผมหน่อยนะคับ list เมื่อเลือกแล้วทำกับบันทึกทำยังไงคับช่วยผมหน่อยนะคับผมเพิ่งฝึกหัดทำคับ
................................................
ช่วยผมหน่อยนะคับผมจะได้นำไปเป็นแนวทางการทำหน้าอื่น ๆ ๆคับ
................................................
โค้ดหน้าบันทุกข้อมูลคับ
Code (PHP)
<?
include ("connet.php");
?>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<?
$id = "PD";
$i = 1;
$j = strlen($id);
$sql = "SELECT pro_code from product where left (pro_code, $j) = '$id' order by pro_code DESC LIMIT 1 ";
$rs = mysql_query($sql) or die (mysql_error());
if($cols = mysql_fetch_array($rs)){
$i = substr($cols['pro_code'], $j);
$i = intval($i)+1;
}
$strProductcode = $id.sprintf("%04d",$i);
?>
<form id="form1" name="form1" method="post" action="addproduct.php">
<table width="458" border="0" align="center" cellpadding="2">
<tr>
<th colspan="4" scope="col"><strong>::<img src="20121116050143551_easyicon_cn_32.png" alt="" width="20" height="20" />เพิ่มข้อมูลสินค้า::
</stron></th>
</tr>
<tr>
<td width="186" align="right">รหัสสินค้า ::</td>
<td width="254" colspan="3"><?=$strProductcode;?><input type="hidden" name="pro_code" id="pro_code" value="<?=$strProductcode;?>" /></td>
</tr>
<tr>
<td align="right">รหัสสินค้า (แต่ละชิ้น) ::</td><? //เปลี่ยนเ็น Serial Number ก็ดี อ. จะได้เข้าใจ ?>
<td colspan="3"><label for="pro_sn"></label>
<input type="text" name="pro_sn" id="pro_sn" /></td>
</tr>
<tr>
<td align="right">ชื่อสินค้า ::</td>
<td colspan="3"><label for="pro_name"></label>
<input type="text" name="pro_name" id="pro_name" /></td>
</tr>
<tr>
<td align="right">ราคาสินค้า ::</td>
<td colspan="3"><label for="pro_price"></label>
<input type="text" name="pro_price" id="pro_price" /></td>
</tr>
<tr>
<td align="right">รายละะเอียดสินค้า ::</td>
<td colspan="3"><label for="pro_detail"></label>
<textarea name="pro_detail" rows="3" id="pro_detail"></textarea></td>
</tr>
<tr>
<td align="right">รีวิวสินค้า ::</td>
<td colspan="3"><label for="pro_review"></label>
<input type="text" name="pro_review" id="pro_review" /></td>
</tr>
<tr>
<td height="22" align="right">รูปสินค้า ::</td>
<td colspan="3"><label for="pro_pic"></label>
<input type="text" name="pro_pic" id="pro_pic" /></td>
</tr>
<tr>
<td align="right">สถานะสินค้า ::</td>
<td colspan="3"><input type="checkbox" name="regcom" id="regcom" value="1" />
<label for="regcom">สินค้าแนะนำ
<input type="checkbox" name="new" id="new" value="1" />
สินค้าใหม่ </label></td>
</tr>
<tr>
<td align="right">ประเภทสินค้า ::</td>
<td colspan="3"><label for="select"></label>
<select name="ty">
<?
$t=$_GET[ty];
$connect=@mysql_connect("localhost","root","root")or die("err SV");
@mysql_select_db("meafahlung",$connect);
$sql= "select type_name from product_type group by type_name;";// ค่าซ้ำกันจะขึ้นมาอย่างเดียวเท่านั้น group by type
$result=@mysql_query($sql,$connect);//จะเก็บประเภททั้งหมดเพราะมันเก็บไว้ $resul
while($cs=mysql_fetch_array($result)){
$s=$t==$cs[0]?"selected":"";
echo"<option $s> $cs[0]</option>";
}
mysql_free_result($result);
?>
</select>
<label for="select4"></label></td>
</tr>
<tr>
<td align="right">ประเภทสินค้าย่อย ::</td>
<td colspan="3"><label for="select2"></label>
<select name="ty">
<?
$t=$_GET[ty];
$connect=@mysql_connect("localhost","root","root")or die("err SV");
@mysql_select_db("meafahlung",$connect);
$sql="select subtype_name from product_subtype group by subtype_name;";// ค่าซ้ำกันจะขึ้นมาอย่างเดียวเท่านั้น group by type
$result=@mysql_query($sql,$connect);//จะเก็บประเภททั้งหมดเพราะมันเก็บไว้ $resul
while($cs=mysql_fetch_array($result)){
$s=$t==$cs[0]?"selected":"";
echo"<option $s> $cs[0]</option>";
}
mysql_free_result($result);
?>
</select></td>
</tr>
<tr>
<td align="right">ยี่ห้อสินค้า ::</td>
<td colspan="3"><label for="select3"></label>
<select name="ty">
<?
$t=$_GET[ty];
$connect=@mysql_connect("localhost","root","root")or die("err SV");
@mysql_select_db("meafahlung",$connect);
$sql="select brand_name from brand group by brand_name;";// ค่าซ้ำกันจะขึ้นมาอย่างเดียวเท่านั้น group by type
$result=@mysql_query($sql,$connect);//จะเก็บประเภททั้งหมดเพราะมันเก็บไว้ $resul
while($cs=mysql_fetch_array($result)){
$s=$t==$cs[0]?"selected":"";
echo"<option $s> $cs[0]</option>";
}
mysql_free_result($result);
?>
</select></td>
</tr>
<tr>
<td align="right">รุ่น ::</td>
<td colspan="3"><label for="model"></label>
<input type="text" name="model" id="model" /></td>
</tr>
<tr>
<td align="right">ค่าจัดส่งสินค้าต่อชิ้น ::</td>
<td colspan="3"><label for="pricesend"></label>
<input type="text" name="pricesend" id="pricesend" /></td>
</tr>
<tr>
<td align="right">การรับประกันสินค้า ::</td>
<td colspan="3"><label for="pro_warranty"></label>
<input type="text" name="pro_warranty" id="pro_warranty" />
ปี</td>
</tr>
<tr align="center">
<td colspan="4"><input type="submit" name="button" id="button" value="บันทึก" />
<input type="submit" name="button2" id="button2" value="ยกเลิก" /></td>
</tr>
</table>
</form>
Code (PHP)
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<?
include ("connet.php");
$pro_code = $_POST['pro_code'];//อย่าลืมทำให้ครบล่ะ ที่ส่งค่า POST มาทั้งหมด
$pro_sn = $_POST['pro_sn'];
$pro_price = $_POST['pro_price'];
$pro_detail = $_POST['pro_detail'];
$pro_review = $_POST['pro_review'];
$pro_pic = $_POST['pro_pic'];
$regcom = $_POST['regcom'];
$new = $_POST['new'];
$type_name = $_POST['type_name'];
$subtypepro_name = $_POST['subtypepro_name'];
$brand_name = $_POST['brand_name'];
$model = $_POST['model'];
$pricesend = $_POST['pricesend'];
$pro_warranty = $_POST['pro_warranty'];
$sql = "insert into product (pro_code) values ('".$pro_code."')";
$dbquery = mysql_query($sql);
echo "<script language='javascript'>";
echo "alert('เพิ่มข้อมูลเรียบร้อย');";
echo "window.location='newproduct.php';";
echo "</script>";
?>
อันนี้เป็นฐานข้อมูลนะคับเมื่อบันทึกผมทำได้แค่นี้เองคับ
Tag : PHP, MySQL, HTML/CSS, JavaScript, jQuery, CakePHP
Date :
2012-12-02 22:46:46
By :
บุญชัย
View :
810
Reply :
9
$sql = "insert into product (pro_code) values ('".$pro_code."')";
ทำไม insert ลงตัวเดียวค่ะ ต้อง insert ให้ครบทุกตัว
Date :
2012-12-03 08:15:11
By :
shushu
แหม๋ ตัวเธอ insert ตัวเดียว มันก็ลงตัวเดียวสิจ๊ะ
Date :
2012-12-03 08:32:32
By :
compiak
งั้นก้อต้องเอาทุกตัวเลยใช่ไหม. .แล้วการอัพโหลดรูปทำยังไง
Date :
2012-12-03 19:36:51
By :
บุญชัย
จะเอาแบบแยกฟิลด์ หรือใส่รวมในฟิลด์เดียวอ่ะครับ
Date :
2012-12-03 21:46:08
By :
shadowless32
แยกฟิลด์คับช่วยแนะนำผมหรือแก้ไขโค้ดให้ผมหนอยนะคับ
Date :
2012-12-03 21:49:08
By :
บุญชัย
newproduct.php
<?
include ("connet.php");
?>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<?
/* ตรงเชื่อมต่อฐานข้อมูลสร้างไว้อันเดียวก็ได้ครับ*/
$connect=@mysql_connect("localhost","root","root")or die("err SV");
@mysql_select_db("meafahlung",$connect);
mysql_query("SET NAMES TIS620");//ใส่ไว้ช่วยแก้ไขปัญหาแสดงภาษาไทย
$id = "PD";
$i = 1;
$j = strlen($id);
$sql = "SELECT pro_code from product where left (pro_code, $j) = '$id' order by pro_code DESC LIMIT 1 ";
$rs = mysql_query($sql) or die (mysql_error());
if($cols = mysql_fetch_array($rs)){
$i = substr($cols['pro_code'], $j);
$i = intval($i)+1;
}
$strProductcode = $id.sprintf("%04d",$i);
?>
<form id="form1" name="form1" method="post" action="addproduct.php" enctype="multipart/form-data">
<table width="458" border="0" align="center" cellpadding="2">
<tr>
<th colspan="4" scope="col"><strong>::<img src="20121116050143551_easyicon_cn_32.png" alt="" width="20" height="20" />เพิ่มข้อมูลสินค้า::
</stron></th>
</tr>
<tr>
<td width="186" align="right">รหัสสินค้า ::</td>
<td width="254" colspan="3"><?=$strProductcode;?><input type="hidden" name="pro_code" id="pro_code" value="<?=$strProductcode;?>" /></td>
</tr>
<tr>
<td align="right">รหัสสินค้า (แต่ละชิ้น) ::</td><? //เปลี่ยนเ็น Serial Number ก็ดี อ. จะได้เข้าใจ ?>
<td colspan="3"><label for="pro_sn"></label>
<input type="text" name="pro_sn" id="pro_sn" /></td>
</tr>
<tr>
<td align="right">ชื่อสินค้า ::</td>
<td colspan="3"><label for="pro_name"></label>
<input type="text" name="pro_name" id="pro_name" /></td>
</tr>
<tr>
<td align="right">ราคาสินค้า ::</td>
<td colspan="3"><label for="pro_price"></label>
<input type="text" name="pro_price" id="pro_price" /></td>
</tr>
<tr>
<td align="right">รายละะเอียดสินค้า ::</td>
<td colspan="3"><label for="pro_detail"></label>
<textarea name="pro_detail" rows="3" id="pro_detail"></textarea></td>
</tr>
<tr>
<td align="right">รีวิวสินค้า ::</td>
<td colspan="3"><label for="pro_review"></label>
<input type="text" name="pro_review" id="pro_review" /></td>
</tr>
<tr>
<td height="22" align="right">รูปสินค้า ::</td>
<td colspan="3"><label for="pro_pic"></label>
<input type="file" name="pro_pic"></td>
</tr>
<tr>
<td align="right">สถานะสินค้า ::</td>
<td colspan="3"><input type="checkbox" name="regcom" id="regcom" value="1" />
<label for="regcom">สินค้าแนะนำ
<input type="checkbox" name="new" id="new" value="1" />
สินค้าใหม่ </label></td>
</tr>
<tr>
<td align="right">ประเภทสินค้า ::</td>
<td colspan="3"><label for="select"></label>
<select name="ty">
<?
$t=$_GET[ty];
$sql= "select type_name from product_type group by type_name;";// ค่าซ้ำกันจะขึ้นมาอย่างเดียวเท่านั้น group by type
$result=@mysql_query($sql,$connect);//จะเก็บประเภททั้งหมดเพราะมันเก็บไว้ $resul
while($cs=mysql_fetch_array($result)){
$s=$t==$cs[0]?"selected":"";
echo"<option $s> $cs[0]</option>";
}
mysql_free_result($result);
?>
</select>
<label for="select4"></label></td>
</tr>
<tr>
<td align="right">ประเภทสินค้าย่อย ::</td>
<td colspan="3"><label for="select2"></label>
<select name="ty">
<?
$t=$_GET[ty];
$sql="select subtype_name from product_subtype group by subtype_name;";// ค่าซ้ำกันจะขึ้นมาอย่างเดียวเท่านั้น group by type
$result=@mysql_query($sql,$connect);//จะเก็บประเภททั้งหมดเพราะมันเก็บไว้ $resul
while($cs=mysql_fetch_array($result)){
$s=$t==$cs[0]?"selected":"";
echo"<option $s> $cs[0]</option>";
}
mysql_free_result($result);
?>
</select></td>
</tr>
<tr>
<td align="right">ยี่ห้อสินค้า ::</td>
<td colspan="3"><label for="select3"></label>
<select name="ty">
<?
$t=$_GET[ty];
$sql="select brand_name from brand group by brand_name;";// ค่าซ้ำกันจะขึ้นมาอย่างเดียวเท่านั้น group by type
$result=@mysql_query($sql,$connect);//จะเก็บประเภททั้งหมดเพราะมันเก็บไว้ $resul
while($cs=mysql_fetch_array($result)){
$s=$t==$cs[0]?"selected":"";
echo"<option $s> $cs[0]</option>";
}
mysql_free_result($result);
?>
</select></td>
</tr>
<tr>
<td align="right">รุ่น ::</td>
<td colspan="3"><label for="model"></label>
<input type="text" name="model" id="model" /></td>
</tr>
<tr>
<td align="right">ค่าจัดส่งสินค้าต่อชิ้น ::</td>
<td colspan="3"><label for="pricesend"></label>
<input type="text" name="pricesend" id="pricesend" /></td>
</tr>
<tr>
<td align="right">การรับประกันสินค้า ::</td>
<td colspan="3"><label for="pro_warranty"></label>
<input type="text" name="pro_warranty" id="pro_warranty" />
ปี</td>
</tr>
<tr align="center">
<td colspan="4"><input type="submit" name="button" id="button" value="บันทึก" />
<input type="submit" name="button2" id="button2" value="ยกเลิก" /></td>
</tr>
</table>
</form>
อย่าลืมสร้างโฟลเดอร์เอาไว้เก็บรูปด้วยน่ะครับ โค้ตข้างล่างผมสร้างโฟลเดอร์ชื่อ propic
addproduct.php
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<?
include ("connet.php");
$pro_code = $_POST['pro_code'];//อย่าลืมทำให้ครบล่ะ ที่ส่งค่า POST มาทั้งหมด
$pro_sn = $_POST['pro_sn'];
$pro_price = $_POST['pro_price'];
$pro_detail = $_POST['pro_detail'];
$pro_review = $_POST['pro_review'];
$pro_pic = $_POST['pro_pic'];
$regcom = $_POST['regcom'];
$new = $_POST['new'];
$type_name = $_POST['type_name'];
$subtypepro_name = $_POST['subtypepro_name'];
$brand_name = $_POST['brand_name'];
$model = $_POST['model'];
$pricesend = $_POST['pricesend'];
$pro_warranty = $_POST['pro_warranty'];
if($HTTP_POST_FILES["pro_pic"]["name"] != ""){ //ถ้าใส่รูปมาด้วย
if(copy($HTTP_POST_FILES["pro_pic"]["tmp_name"],"../propic/".$HTTP_POST_FILES["pro_pic"]["name"])){
$sql = "insert into product (pro_code,pro_sn,pro_price,pro_detail,pro_review,pro_pic,regcom,new,type_name,subtypepro_name,brand_name,model,pricesend,pro_warranty) values ('$pro_code','$pro_sn','$pro_price','$pro_detail','$pro_review','".$HTTP_POST_FILES["pro_pic"]["name"]."','$regcom','$new','$type_name','$subtypepro_name','$brand_name','$model','$pricesend','$pro_warranty')";
$dbquery = mysql_query($sql);
}
}else{ //ถ้าไม่ใส่รูปมาด้วย
$sql = "insert into product (pro_code,pro_sn,pro_price,pro_detail,pro_review,regcom,new,type_name,subtypepro_name,brand_name,model,pricesend,pro_warranty) values ('$pro_code','$pro_sn','$pro_price','$pro_detail','$pro_review','$regcom','$new','$type_name','$subtypepro_name','$brand_name','$model','$pricesend','$pro_warranty')";
$dbquery = mysql_query($sql);
}
if($dbquery){
echo "<script language=\"JavaScript\">";
echo "alert('เพิ่มข้อมูลเรียบร้อย');";
echo "</script>";
echo "<meta http-equiv=refresh content=0;URL=newproduct.php>";
}
?>
Date :
2012-12-03 23:54:03
By :
shadowless32
ลืมบอกไปตรงฟิลด์ new น่าจะเป็นคำสงวน แก้ไขเป็นคำอื่นด้วยครับ
Date :
2012-12-03 23:58:53
By :
shadowless32
ใส่รูปแล้วมันคือ error แบบนี้คับ เพราะอ่ะไรคับ
Warning: copy(../propic/486951_550027065008903_1295981858_n.jpg) [function.copy]: failed to open stream: No such file or directory in C:\AppServ\www\Maefahluang\addproduct.php on line 21
Date :
2012-12-04 00:08:35
By :
บุญชัย
จะทำยังไงให้ list menu สามารถบันทึกลงฐานข้อมูลได้คับ. ..มันบันทึกไม่ได้
Date :
2012-12-04 00:20:39
By :
บุญชัย
Load balance : Server 05