|
|
|
รบกวนสอบถามเรื่อง Add รูปหน่อยครับ ตอนนี้ผม add ได้แค่รูปเดียว ถ้าผมจจะเพิ่ม รูป ที่ 2 รูปที่ 3 |
|
|
|
|
|
|
|
ตอนนี้ผม add ได้แค่รูปเดียว ถ้าผมจจะเพิ่ม รูป ที่ 2 รูปที่ 3 ต้องเพิ่ม แนกำ ตรงไหนอะครับCode (PHP)
<?
$host = "localhost";
$username = "root";
$password = "overclock";
$db = "data_tolovemore";
@mysql_connect($host, $username, $password) or die("MySQL Connection Failed");
@mysql_select_db($db) or die("MySQL Select Database Failed");
mysql_query("SET NAMES utf8") or die(mysql_error());
mysql_query("SET character_set_results=tis620");
mysql_query("SET character_set_client=tis620");
mysql_query("SET character_set_connection=tis620");
// Prepare Variables
$name = $_REQUEST["name"];
$detail = nl2br($_REQUEST["detail"]);
$price = $_REQUEST["price"];
$cat_id = $_REQUEST["cat_id"];
$pic_size = $_FILES["pic"]["size"];
$pic_type = $_FILES["pic"]["type"];
$pic_tmp = $_FILES["pic"]["tmp_name"];
// Check Input
$error = "";
// Name
if ($name == "") {
$error .= "ไม่มีชื่อสินค้า<br />";
}
// Detail
if ($detail == "") {
$error .= "ไม่มีรายละเอียดสินค้า<br />";
}
// Price
if ($price == "") {
$error .= "ไม่มีราคาสินค้า<br />";
}
else if (!is_numeric($price)) {
$error .= "ราคาสินค้าไม่เป็นตัวเลข<br />";
}
// Picture
if ($pic_size == 0) {
$error .= "ไม่มีรูปภาพ<br />";
}
else {
if ($pic_size > 1024*100) {
$error .= "ขนาดไฟล์รูปภาพเกินกว่า 100 kb<br />";
}
if ($pic_type != "image/pjpeg" && $pic_type != "image/jpeg" && $pic_type != "image/gif") {
$error .= "ชนิดไฟล์รูปภาพไม่ใช่ jpeg และ gif<br />";
}
}
// Action
if ($error == "") {
// Add New Product
$sql = "INSERT INTO product"
. " (name, detail, price, category_id , utube , list , promotion , toyfor)"
. " VALUES('$name', '$detail', '$price', '$cat_id','$utube', '$list', '$promotion', '$toyfor')";
mysql_query($sql) or die(mysql_error());
// Add Picture
$id = mysql_insert_id();
move_uploaded_file($pic_tmp, "../shop/images/$id.jpg");
}
// Show Result
if ($error == "") {
$result = "เพิ่มสินค้าเรียบร้อย<br />"
. "<a href='show_product.php'>แสดงสินค้า</a>";
}
else {
$result = $error
. "<a href='#' onclick='history.back(); return false;'>กลับไป</a>";
}
?>
<!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>ระบบตะกร้าสินค้า - เพิ่มสินค้า</title>
</head>
<body>
<?=$result?>
</body>
</html>
Tag : - - - -
|
|
|
|
|
|
Date :
2010-07-20 05:07:18 |
By :
sodared |
View :
748 |
Reply :
0 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|