|
|
|
ช่วยหน่อยนะค่ะ มีสอบวันอังคารแล้วค่ะต้องการทำ MSg box |
|
|
|
|
|
|
|
ช่วยหน่อยนะค่ะ ต้องการทำmsg box ค่ะ ทำไม่เป็น อยากให้ขึ้น msg box ว่า เราได้เพิ่มสินค้าให้คุณเรียบร้อยแล้วค่ะ โดยไม่ต้องลิงค์ไปอีกหน้าหนึ่งค่ะ ส่งงานอาจารย์แล้วไม่ผ่าน ช่วยหน่อยนะค่ะ
นี่เป็นภาพที่ลิงค์ไปอีกหน้าหนึ่งนะค่ะ
Code (PHP)
ส่วนนี้คือ โค้ดที่เขียนนะค่ะ
Code (PHP)
<?
//session_start();
//if ($sess_adminid<>session_id()) {
// header("Location: admin.php"); exit();
// }
?>
<!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>OilShop_E-commerch:: สำหรับผู้ดูแลระบบ</title>
<style type="text/css">
<!--
a:visited {
font-family: Arial, Helvetica, sans-serif;
font-size: 24px;
color: #000000;
}
-->
</style>
</head>
<body>
<p>
<? include "admin_menu.php"; ?>
</p>
<p> </p><h2 align="center">
<form Action="admin_product_add2.php" method="post" enctype="multipart/form-data">
<P><img src="image/admin/admin_product/product1.gif" width="139" height="70" /></P>
<table width="600" border="0" cellspacing="1" cellpadding="0">
<TR><br />
<TD width="203"> <small>ชื่อสินค้า</TD>
<TD width="394"> <input type="text" name="name" size="24" />
<span class="style2"><strong>*</strong></span></TD>
</TR>
<TR>
<TD><small>ประเภทสินค้า </TD>
<td>
<select name="ref_id_type">
<option value="0"><small>เลือกประเภทสินค้า </option>
<?
$host= "127.0.0.1";
$user ="root";
$passwd ="12345678";
$dbname="e_comerceoilshop";
$link= mysql_connect($host,$user,$passwd) or die ("เชื่อมต่อโฮสต์ไม่ได้");
mysql_select_db($dbname) or die ("เชื่อมต่อฐานข้อมูลไม่ได้");
$link = mysql_connect($host,$user,$passwd);
mysql_query("set names utf8");
$sql="use e_comerceoilshop ";
$sql = "select * from type";
$result = mysql_db_query($dbname,$sql);
while ($rs=mysql_fetch_array ($result))
{
$id_type=$rs[Type_ID];
$name_type=$rs[Type_Name];
echo "<OPTION VALUE='$id_type'> $name_type </option>";
}
?>
</select>
<span class="style2"><strong>*</strong></span> </TD>
</TR>
<TD><small> รายละเอียด </TD>
<TD><textarea name="detail" cols="40" rows="4"></textarea> <span class="style2"><strong>* </strong></span></TD>
</TR><br />
<TR>
<TD><small>ราคา </TD>
<TD><input type="text" name="price" size="10" />
<small>บาท </TD>
</TR>
<TR>
<TD><small>รูปสินค้า</TD>
<TD><input type="file" name="fileupload" />
<input type="hidden" name="MAX_FILE_SIZE" value="100000" /></TD>
</TR>
<TD> </TD>
<TD><input type="submit" name="submit" value="Submit" />
<input type="reset" name="submit2" value="Reset"
</TD>
</TR>
</table>
</form>
</h2>
</body>
</html>
แล้วนี่เป็นโค้่ดของหน้าที่ 2 ที่มันรันไปหานะค่ะ
Code (PHP)
<?
//session_start();
//if ($sess_adminid<>session_id()) {
// header("Location: admin.php"); exit();
// }
?>
<!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>
<?
$name=$_POST[name];
$ref_id_type=$_POST[ref_id_type];
$detail =$_POST[detail];
$price=$_POST[price];
$fileupload=$_FILES['fileupload']['tmp_name'];
$fileupload_name=$_FILES['fileupload']['name'];
$fileupload_size=$_FILES['fileupload']['size'];
$fileupload_type=$_FILES['fileupload']['type'];
if ($name=="") {
echo "<h3> ERROR : กรุณากรอกชื่อสินค้า </h3>";
exit();
} else if ($ref_id_type=="0")
{echo "<h3> ERROR : กรุณาเลือกประเภทสินค้า </h3>";
//exit();
} else if ($detail=="")
{echo "<h3>ERROR : กรุณากรอกรายละเอียด </h3>";
exit();
} else if ($price==""){
echo "<h3>ERROR : กรุณากรอกราคาสินค้า </h3>";
exit();
}
$host= "127.0.0.1";
$user ="root";
$passwd ="12345678";
$dbname="e_comerceoilshop";
$link= mysql_connect($host,$user,$passwd) or die ("เชื่อมต่อโฮสต์ไม่ได้");
mysql_select_db($dbname) or die ("เชื่อมต่อฐานข้อมูลไม่ได้");
$link = mysql_connect($host,$user,$passwd);
mysql_query("set names utf8");
$sql="use e_comerceoilshop ";
$sql="INSERT INTO product VALUES (null,'$name','$ref_id_type','$detail','$price','')";
$result=mysql_db_query($dbname,$sql);
if ($fileupload) {
$array_last=explode(".",$fileupload_name);
$c=count($array_last) -1;
$lastname=strtolower($array_last[$c]) ;
if ($lastname=="gif" or $lastname=="jpg" or $lastname=="jpeg") {
$sql2="select max(id_prd) from product";
$result2 = mysql_db_query($dbname,$sql2);
$row=mysql_fetch_row($result2);
$photoname=$row[0].".". $lastname;
copy($fileupload, "photo/".$photoname);
$sql3 ="update product set photo_prd='$photoname' where id_prd = '$row[0]'";
$result3 =mysql_db_query($dbname,$sql3);
}
unlink ($fileupload);
}
echo "<h3> เพิ่มสินค้าเรียบร้อยแล้ว </h3>";
echo "[ <A HREF =admin_product.php>กลับหน้าหลัก</a>] ";
mysql_close();
?>
</body>
</html>
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2012-02-24 09:46:35 |
By :
katay |
View :
1195 |
Reply :
9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function alert(){
alert("เราได้เพิ่มสินค้าให้คุณเรียบร้อยแล้วค่ะ");
}
onclick="alert();"
|
|
|
|
|
Date :
2012-02-24 10:27:41 |
By :
Dragons_first |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function alert(){
alert("เราได้เพิ่มสินค้าให้คุณเรียบร้อยแล้วค่ะ");
}
onclick="alert();"
อันนี้ต้องเขียนแยกฟังค์ชั่น หรือ สามารถแทรกลงไปในโค้ดก่อนหน้านี้ได้เลยอ่ะค่ะพี่
|
|
|
|
|
Date :
2012-02-24 10:41:42 |
By :
katay |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณนะค่ะ เดี๋ยวไปลองทำก่อนนะค่ะ
|
|
|
|
|
Date :
2012-02-24 11:37:47 |
By :
katay |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
echo "<script>alert('เพิมสินค้าแล้ว')</script>";
|
|
|
|
|
Date :
2012-02-24 12:16:09 |
By :
teukkead |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อยากให้รัน msg box ในหน้าเดียวกัน เลยได้ไหมค่ะ...ไม่อยากให้รันไปหน้าอีกอ่ะค่ะ
|
|
|
|
|
Date :
2012-02-24 12:28:04 |
By :
katay |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
จริงๆมันก็รันอยู่หน้าเดิมนั่นแหละไม่ได้ไปหน้าไหนเลย ไม่อย่างนั้นก็หาพวก jqeury alert มายัดใส่เอาครับ (ผมเข้าใจว่าคุณต้องการให้มันเห็นพื้นหลังอยู่ใช่ไหมครับ)
|
|
|
|
|
Date :
2012-02-24 12:40:41 |
By :
Dragons_first |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ช่วยทีนะ ต้องสอบโปรเจกจบ วันอังคารแล้วค๊า
|
|
|
|
|
Date :
2012-02-24 13:24:51 |
By :
katay |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่ต้องการให้เห็นพื้นหลังขาวๆๆค่ะ
|
|
|
|
|
Date :
2012-02-24 13:26:29 |
By :
katay |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
modal popup
ลองๆ หาเล่นดู
|
|
|
|
|
Date :
2012-02-25 04:14:36 |
By :
ekeak |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|