|
|
|
เขียนโค้ดเพิ่มฟิลด์+รับค่าจากฟอร์ม แล้วsubmit ยังไงไม่ให้errorครั้งที่2ครับ |
|
|
|
|
|
|
|
คือ ในฐานข้อมูลของผม
ตาราง person จะประกอบด้วย
ฟิลด์ ps_id,ps_name,ps_surname,ps_department,ps_salary
แล้วผมจะเพิ่ม ฟิลด์ ps_pic ลงไปแล้วก็รับค่าจากฟอร์มลงในฐานข้อมูลแล้วแสดงผลทั้งหมดมาอีกที
ครั้งแรกใส่ข้อมูลแล้วsubmit โอเคทุกอย่างนะครับ แต่เวลาใส่ข้อมูลแล้วsubmitครั้งที่สองมันจะerrorตรงการเพิ่มฟิลด์ps_picอ่ะคับ
ทำยังไงไม่ให้มันเพิ่มฟิลด์ps_picครั้งที่สองอ่ะครับ ต้องใช้ if else ใช่มั้ยครับ??
(ปล.ผมเขียนโค้ดเอง มั่วอย่าว่ากันนะครับT-Tหัดทำ)
add.php
<!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>
<form action="show.php" method="get" enctype="multipart/form-data">
<table align="center" border="1" bordercolor="#FF00FF">
<caption><b>รับข้อมูล</b></caption>
<tr>
<td>รหัสนักศึกษา</td>
<td><input name="f1" type="text" size="20"/></td>
</tr>
<tr>
<td>ชื่อ</td>
<td><input name="f2" type="text" size="20"/></td>
</tr>
<tr>
<td>นามสกุล</td>
<td><input name="f3" type="text" size="20"/></td>
</tr>
<tr>
<td>สาขา</td>
<td><input name="f4" type="text" size="20"/></td>
</tr>
<tr>
<td>เงินเดือน</td>
<td><input name="f5" type="text" size="20"/></td>
</tr>
<tr>
<td>รูปภาพ</td>
<td><input name="f6" type="file" size="20" /></td>
</tr>
<tr>
<td> </td>
<td><input name="f7" type="submit" value="ตกลง" id="f7" /> <input name="f8" type="reset" value="ล้างข้อมูล" /></td>
</tr>
</table>
</form>
</body>
</html>
show.php
<!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>
<?php
$f1=$_GET['f1']; $f2=$_GET['f2']; $f3=$_GET['f3']; $f4=$_GET['f4']; $f5=$_GET['f5'];$f6=$_GET['f6'];
$host = "localhost";
$user = "root";
$passwd = "";
$dbname = "db_rdbms";
mysql_connect($host,$user,$passwd) or die("ติดต่อ Host ไม่ได้");
mysql_select_db($dbname) or die("ติดต่อฐานข้อมูลไม่ได้");
mysql_query("set NAMES utf8");
$sql2 ="alter table person add ps_pic varchar(60)";
$sql_result = mysql_query($sql2) or die ("error");
$sql ="insert into person (ps_id,ps_name,ps_surname,ps_department,ps_salary,ps_pic)
values ('$f1','$f2','$f3','$f4','$f5','$f6')";
$sqlquery=mysql_db_query($dbname, $sql);
$checkadd = "select * from `person` where ps_id='$f1' ";
$result = mysql_db_query($dbname, $checkadd);
$num=mysql_num_rows($result);
echo "<center><table border=1>\n";
echo"<caption><b>ข้อมูล</b></caption>";
echo "<tr><th>รหัส</th><th>ชื่อ</th><th>นามสกุล</th><th>สาขา</th><th>เงินเดือน</th><th>รูปภาพ</th>";
if ($num==1)
{
echo"<center>เพิ่มข้อมูลผู้ใช้ลงในฐานข้อมูลเรียบร้อยแล้ว</br></center> ";
echo"<tr><td>$f1</td><td>$f2</td><td>$f3</td><td>$f4</td><td>$f5</td><td><img src='$f6'></td></tr>";
}
echo "</table></center>";
mysql_close();
?>
</body>
</html>
Tag : PHP, MySQL
|
ประวัติการแก้ไข 2010-08-07 01:27:18
|
|
|
|
|
Date :
2010-08-07 00:05:59 |
By :
gravity99 |
View :
1202 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แนบ error กับ code มาด้วยครับ
|
|
|
|
|
Date :
2010-08-07 01:18:00 |
By :
blacklion |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
งงไปหมดแว้วครับ
|
|
|
|
|
Date :
2010-08-07 01:54:30 |
By :
gravity99 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|