|
|
|
ช่วยดูโค้ดระบบนี้หน่อยสิครับ พอดีว่าติดต่อฐานข้อมูลได้แล้ว แต่ตอนจะ insert เข้าไปในฐานข้อมูลแล้วมันไม่ขึ้นอะครับ ช่วยเช็กหน่อยสิครับ |
|
|
|
|
|
|
|
Code (PHP)
<html xmlns="http://www.w3.org/1999/xhtml">
<?php
$dep_id=$_REQUEST['dep_id'];
$dep_name=$_REQUEST['dep_name'];
$faculty=$_REQUEST['faculty'];
$email=$_REQUEST['email'];
$tell=$_REQUEST['tell'];
$hostname = "localhost";
$username = "root";
$password = "";
$conn = mysql_connect( $hostname, $username, $password );
if ( ! $conn )
die ( "ไม่สามารถติดต่อกับ MySQL ได้" );
mysql_select_db("ebandit", $con);
$result = mysql_query("SELECT * FROM department( dep_id, dep_name, faculty, email, tell )
VALUES ( '$dep_id', '$dep_name', '$faculty', '$email', $tell' )") ;
mysql_close ( $conn );
?>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
<!--
body,td,th {
font-family: Tahoma;
font-size: 16px;
color: #FFFFFF;
}
body {
background-color: #000000;
}
a:link {
color: #00FFFF;
}
a:visited {
color: #00FFFF;
}
a:hover {
color: #CCCCCC;
}
a:active {
color: #CCCCCC;
}
-->
</style></head>
<body>
<table width="1179" height="709" border="0" align="center" bordercolor="#FFFFFF">
<tr>
<td height="180" colspan="3" bordercolor="#FFFFFF" bgcolor="#FF9933"><div align="center"><img src="header.jpg" width="1171" height="176" /></div></td>
</tr>
<tr>
<td width="213" height="496" valign="top"><table width="213" border="1">
<tr>
<td width="203" bgcolor="#FF6600">การจัดการข้อมูล</td>
</tr>
<tr>
<td><a href="insertfa.php">-เพิ่มข้อมูลคณะ</a></td>
</tr>
<tr>
<td><a href="insertdep.php">-เพิ่มข้อมูลภาควิชา</a></td>
</tr>
<tr>
<td><a href="insertuser.php">-เพิ่มข้อมูลผู้ใช้บัณฑิต</a></td>
</tr>
<tr>
<td><a href="insertadmin.php">-เพิ่มข้อมูลผู้ดูแลระบบ</a></td>
</tr>
<tr>
<td>-เปลี่ยนรหัสผ่าน</td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td bgcolor="#FF6600">การแสดงผลข้อมูล</td>
</tr>
<tr>
<td><a href="showdep.php">-แสดงผลข้อมูลภาควิชา</a></td>
</tr>
<tr>
<td><a href="showuser.php">-แสดงผลข้อมูลผู้ใช้บัณฑิต</a></td>
</tr>
<tr>
<td><a href="showadmin.php">-แสดงผลข้อมูลผู้ดูแลระบบ</a></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td><a href="evaluation.php">ระบบการประเมินผู้ใช้บัณฑิต</a></td>
</tr>
</table></td>
<td width="950" align="center" valign="top"><table width="473" height="229" border="1">
<tr>
<td width="111" height="23" bgcolor="#FF6600"> </td>
<td width="346" bgcolor="#FF6600">กรอกข้อมูล</td>
</tr>
<tr>
<td width="81" height="32">รหัสภาควิชา</td>
<td><form name="dep" method="post" action="insertdev.php">
<label>
<input type="text" name="dep_id" id="dep_id" />
</label>
</form></td>
</tr>
<tr>
<td height="30">ชื่อภาควิชา</td>
<td><input type="text" name="dep_name" id="dep_name" /></td>
</tr>
<tr>
<td height="32">คณะ</td>
<td><label>
<select name="faculty" id="faculty">
<option value="1">ศึึกษาศาสตร์</option>
<option value="2">วิทยาศาสตร์และเทคโนโลยี</option>
<option value="3">มนุษยศาสตร์และสังคมศาสตร์</option>
<option value="4">วิทยาการสื่อสาร</option>
<option value="5">รัฐศาสตร์</option>
<option value="6">วิทยาลัยอิสลาม</option>
<option value="7">ศิลปกรรมศาสตร์</option>
</select>
</label> </td>
</tr>
<tr>
<td height="26">อีเมล</td>
<td><input type="text" name="email" id="email" /></td>
</tr>
<tr>
<td>เบอร์โทรศัพท์</td>
<td><input type="text" name="tell" id="tell" /></td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
</table>
<label>
<form id="form3" name="form3" method="post" action="">
<label>
<input type="submit" name="ap" id="ap" value="ยืนยัน" onClick="return OnSubmit()">
</label>
<label>
<input type="submit" name="clos" id="clos" value="ยกเลิก" />
</label>
</form>
</td>
<td width="2" align="center" valign="top"> </td>
</tr>
<tr>
<td height="23"> </td>
<td> </td>
<td> </td>
</tr>
</table>
</body>
</html>
Tag : PHP
|
|
|
|
|
|
Date :
2011-08-13 13:40:58 |
By :
sunnyonto |
View :
778 |
Reply :
13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
จะบันทึกได้ไงครับ คุณใช้คำสั่งผิด คำสั่ง SELECT เป็นคำสั่งเลือกข้อมูลในฐานข้อมูลมาแสดงครับ ถ้าจะบันทึกข้อมูลลงฐานข้อมูลต้องใช้คำสั่ง INSERT INTO ครับ
Code (PHP)
$result = mysql_query("SELECT * FROM department( dep_id, dep_name, faculty, email, tell )
VALUES ( '$dep_id', '$dep_name', '$faculty', '$email', $tell' )") ;
เป็น
Code (PHP)
$result = mysql_query("INSERT INTO department( dep_id, dep_name, faculty, email, tell )
VALUES ( '$dep_id', '$dep_name', '$faculty', '$email', $tell' )") ;
|
ประวัติการแก้ไข 2011-08-13 13:46:03 2011-08-13 13:47:03
|
|
|
|
Date :
2011-08-13 13:44:36 |
By :
arm8957 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[img=แ]https://www.thaicreate.com/upload/stock/20110813135121.jpg[/img
ออ เปลี่ยนแล้วครับ ยังไม่ได้เหมือนเดิม หรือว่าผิดตรงที่ ฐานข้อมูล
หรือว่า ตรงปุ่ม ยืนยัน ครับ
|
|
|
|
|
Date :
2011-08-13 13:56:17 |
By :
sunnyonto |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
หรือว่าผิดตรงทที่ฐานข้อมูลครับ ตัวแปรเหมือนกันแล้วครับ
ช่วยดูหน่วยนะครับ
|
|
|
|
|
Date :
2011-08-13 13:57:48 |
By :
sunnyonto |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอดูโค๊ดหน้ากรอกข้อมูลหน่อยได้ไม๊ครับ
|
|
|
|
|
Date :
2011-08-13 13:58:27 |
By :
arm8957 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (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">
<?php
$dep_id=$_REQUEST['dep_id'];
$dep_name=$_REQUEST['dep_name'];
$faculty=$_REQUEST['faculty'];
$email=$_REQUEST['email'];
$tell=$_REQUEST['tell'];
$hostname = "localhost";
$username = "root";
$password = "";
$conn = mysql_connect( $hostname, $username, $password );
if ( ! $conn )
die ( "ไม่สามารถติดต่อกับ MySQL ได้" );
mysql_select_db("ebandit", $con);
$result = mysql_query("INSERT INTO department( dep_id, dep_name, faculty, email, tell )
VALUES ( '$dep_id', '$dep_name', '$faculty', '$email', '$tell' )") ;
mysql_close ( $conn );
?>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>ระบบการติดตามคุณภาพบัณฑิต</title>
<style type="text/css">
<!--
body,td,th {
font-family: Tahoma;
font-size: 16px;
color: #FFFFFF;
}
body {
background-color: #000000;
}
a:link {
color: #00FFFF;
}
a:visited {
color: #00FFFF;
}
a:hover {
color: #CCCCCC;
}
a:active {
color: #CCCCCC;
}
-->
</style></head>
<body>
<table width="1179" height="709" border="0" align="center" bordercolor="#FFFFFF">
<tr>
<td height="180" colspan="3" bordercolor="#FFFFFF" bgcolor="#FF9933"><div align="center"><img src="header.jpg" width="1171" height="176" /></div></td>
</tr>
<tr>
<td width="213" height="496" valign="top"><table width="213" border="1">
<tr>
<td width="203" bgcolor="#FF6600">การจัดการข้อมูล</td>
</tr>
<tr>
<td><a href="insertfa.php">-เพิ่มข้อมูลคณะ</a></td>
</tr>
<tr>
<td><a href="insertdep.php">-เพิ่มข้อมูลภาควิชา</a></td>
</tr>
<tr>
<td><a href="insertuser.php">-เพิ่มข้อมูลผู้ใช้บัณฑิต</a></td>
</tr>
<tr>
<td><a href="insertadmin.php">-เพิ่มข้อมูลผู้ดูแลระบบ</a></td>
</tr>
<tr>
<td>-เปลี่ยนรหัสผ่าน</td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td bgcolor="#FF6600">การแสดงผลข้อมูล</td>
</tr>
<tr>
<td><a href="showdep.php">-แสดงผลข้อมูลภาควิชา</a></td>
</tr>
<tr>
<td><a href="showuser.php">-แสดงผลข้อมูลผู้ใช้บัณฑิต</a></td>
</tr>
<tr>
<td><a href="showadmin.php">-แสดงผลข้อมูลผู้ดูแลระบบ</a></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td><a href="evaluation.php">ระบบการประเมินผู้ใช้บัณฑิต</a></td>
</tr>
</table></td>
<td width="950" align="center" valign="top"><table width="473" height="229" border="1">
<tr>
<td width="111" height="23" bgcolor="#FF6600"> </td>
<td width="346" bgcolor="#FF6600">กรอกข้อมูล</td>
</tr>
<tr>
<td width="81" height="32">รหัสภาควิชา</td>
<td><form name="dep" method="post" action="insertdev.php">
<label>
<input type="text" name="dep_id" id="dep_id" />
</label>
</form></td>
</tr>
<tr>
<td height="30">ชื่อภาควิชา</td>
<td><input type="text" name="dep_name" id="dep_name" /></td>
</tr>
<tr>
<td height="32">คณะ</td>
<td><label>
<select name="faculty" id="faculty">
<option value="1">ศึึกษาศาสตร์</option>
<option value="2">วิทยาศาสตร์และเทคโนโลยี</option>
<option value="3">มนุษยศาสตร์และสังคมศาสตร์</option>
<option value="4">วิทยาการสื่อสาร</option>
<option value="5">รัฐศาสตร์</option>
<option value="6">วิทยาลัยอิสลาม</option>
<option value="7">ศิลปกรรมศาสตร์</option>
</select>
</label> </td>
</tr>
<tr>
<td height="26">อีเมล</td>
<td><input type="text" name="email" id="email" /></td>
</tr>
<tr>
<td>เบอร์โทรศัพท์</td>
<td><input type="text" name="tell" id="tell" /></td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
</table>
<label>
<form id="form3" name="form3" method="post" action="">
<label>
<input type="submit" name="ap" id="ap" value="ยืนยัน" onClick="return OnSubmit()">
</label>
<label>
<input type="submit" name="clos" id="clos" value="ยกเลิก" />
</label>
</form>
</td>
<td width="2" align="center" valign="top"> </td>
</tr>
<tr>
<td height="23"> </td>
<td> </td>
<td> </td>
</tr>
</table>
</body>
</html>
นี้ครับช่วยดูหน่อยนะครับ
|
|
|
|
|
Date :
2011-08-13 14:09:08 |
By :
sunnyonto |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (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">
<?php
$dep_id=$_REQUEST['dep_id'];
$dep_name=$_REQUEST['dep_name'];
$faculty=$_REQUEST['faculty'];
$email=$_REQUEST['email'];
$tell=$_REQUEST['tell'];
$hostname = "localhost";
$username = "root";
$password = "";
$conn = mysql_connect( $hostname, $username, $password );
if ( ! $conn )
die ( "ไม่สามารถติดต่อกับ MySQL ได้" );
mysql_select_db("ebandit", $con);
$result = mysql_query("INSERT INTO department( dep_id, dep_name, faculty, email, tell )
VALUES ( '$dep_id', '$dep_name', '$faculty', '$email', '$tell' )") ;
mysql_close ( $conn );
?>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>ระบบการติดตามคุณภาพบัณฑิต</title>
<style type="text/css">
<!--
body,td,th {
font-family: Tahoma;
font-size: 16px;
color: #FFFFFF;
}
body {
background-color: #000000;
}
a:link {
color: #00FFFF;
}
a:visited {
color: #00FFFF;
}
a:hover {
color: #CCCCCC;
}
a:active {
color: #CCCCCC;
}
-->
</style></head>
<body>
<table width="1179" height="709" border="0" align="center" bordercolor="#FFFFFF">
<tr>
<td height="180" colspan="3" bordercolor="#FFFFFF" bgcolor="#FF9933"><div align="center"><img src="header.jpg" width="1171" height="176" /></div></td>
</tr>
<tr>
<td width="213" height="496" valign="top"><table width="213" border="1">
<tr>
<td width="203" bgcolor="#FF6600">การจัดการข้อมูล</td>
</tr>
<tr>
<td><a href="insertfa.php">-เพิ่มข้อมูลคณะ</a></td>
</tr>
<tr>
<td><a href="insertdep.php">-เพิ่มข้อมูลภาควิชา</a></td>
</tr>
<tr>
<td><a href="insertuser.php">-เพิ่มข้อมูลผู้ใช้บัณฑิต</a></td>
</tr>
<tr>
<td><a href="insertadmin.php">-เพิ่มข้อมูลผู้ดูแลระบบ</a></td>
</tr>
<tr>
<td>-เปลี่ยนรหัสผ่าน</td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td bgcolor="#FF6600">การแสดงผลข้อมูล</td>
</tr>
<tr>
<td><a href="showdep.php">-แสดงผลข้อมูลภาควิชา</a></td>
</tr>
<tr>
<td><a href="showuser.php">-แสดงผลข้อมูลผู้ใช้บัณฑิต</a></td>
</tr>
<tr>
<td><a href="showadmin.php">-แสดงผลข้อมูลผู้ดูแลระบบ</a></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td><a href="evaluation.php">ระบบการประเมินผู้ใช้บัณฑิต</a></td>
</tr>
</table></td>
<td width="950" align="center" valign="top">
<form name="dep" method="post" action="insertdev.php">
<table width="473" height="229" border="1">
<tr>
<td height="23" colspan="2" bgcolor="#FF6600" align="center"><strong>กรอกข้อมูล</strong></td>
</tr>
<tr>
<td width="111" height="32">รหัสภาควิชา</td>
<td width="346">
<label>
<input type="text" name="dep_id" id="dep_id" />
</label>
</td>
</tr>
<tr>
<td height="30">ชื่อภาควิชา</td>
<td><input type="text" name="dep_name" id="dep_name" /></td>
</tr>
<tr>
<td height="32">คณะ</td>
<td><label>
<select name="faculty" id="faculty">
<option value="1">ศึึกษาศาสตร์</option>
<option value="2">วิทยาศาสตร์และเทคโนโลยี</option>
<option value="3">มนุษยศาสตร์และสังคมศาสตร์</option>
<option value="4">วิทยาการสื่อสาร</option>
<option value="5">รัฐศาสตร์</option>
<option value="6">วิทยาลัยอิสลาม</option>
<option value="7">ศิลปกรรมศาสตร์</option>
</select>
</label> </td>
</tr>
<tr>
<td height="26">อีเมล</td>
<td><input type="text" name="email" id="email" /></td>
</tr>
<tr>
<td>เบอร์โทรศัพท์</td>
<td><input type="text" name="tell" id="tell" /></td>
</tr>
<tr>
<td colspan="2" align="center"><input type="submit" name="clos" id="clos" value="ยกเลิก" /> <input type="submit" name="ap" id="ap" value="ยืนยัน" onClick="return OnSubmit()"></td>
</tr>
</table>
</form>
</td>
<td width="2" align="center" valign="top"> </td>
</tr>
<tr>
<td height="23"> </td>
<td> </td>
<td> </td>
</tr>
</table>
</body>
</html>
ลองดูแบบนี้นะครับว่าได้รึยัง พอดีว่าคุณระบุ <form></form> ผิดที่อะครับ
|
ประวัติการแก้ไข 2011-08-13 14:32:48
|
|
|
|
Date :
2011-08-13 14:31:08 |
By :
arm8957 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เอานี่ผมแก้ให้นิดหน่อย โดยให้ text field ชิดซ้าย และก็ตรงปุ่ม "ยกเลิก" ก็กำหนดให้รีเซ็ตค่าครับ
Code (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">
<?php
$dep_id=$_REQUEST['dep_id'];
$dep_name=$_REQUEST['dep_name'];
$faculty=$_REQUEST['faculty'];
$email=$_REQUEST['email'];
$tell=$_REQUEST['tell'];
$hostname = "localhost";
$username = "root";
$password = "";
$conn = mysql_connect( $hostname, $username, $password );
if ( ! $conn )
die ( "ไม่สามารถติดต่อกับ MySQL ได้" );
mysql_select_db("ebandit", $con);
$result = mysql_query("INSERT INTO department( dep_id, dep_name, faculty, email, tell )
VALUES ( '$dep_id', '$dep_name', '$faculty', '$email', '$tell' )") ;
mysql_close ( $conn );
?>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>ระบบการติดตามคุณภาพบัณฑิต</title>
<style type="text/css">
<!--
body,td,th {
font-family: Tahoma;
font-size: 16px;
color: #FFFFFF;
}
body {
background-color: #000000;
}
a:link {
color: #00FFFF;
}
a:visited {
color: #00FFFF;
}
a:hover {
color: #CCCCCC;
}
a:active {
color: #CCCCCC;
}
-->
</style></head>
<body>
<table width="1179" height="709" border="0" align="center" bordercolor="#FFFFFF">
<tr>
<td height="180" colspan="3" bordercolor="#FFFFFF" bgcolor="#FF9933"><div align="center"><img src="header.jpg" width="1171" height="176" /></div></td>
</tr>
<tr>
<td width="213" height="496" valign="top"><table width="213" border="1">
<tr>
<td width="203" bgcolor="#FF6600">การจัดการข้อมูล</td>
</tr>
<tr>
<td><a href="insertfa.php">-เพิ่มข้อมูลคณะ</a></td>
</tr>
<tr>
<td><a href="insertdep.php">-เพิ่มข้อมูลภาควิชา</a></td>
</tr>
<tr>
<td><a href="insertuser.php">-เพิ่มข้อมูลผู้ใช้บัณฑิต</a></td>
</tr>
<tr>
<td><a href="insertadmin.php">-เพิ่มข้อมูลผู้ดูแลระบบ</a></td>
</tr>
<tr>
<td>-เปลี่ยนรหัสผ่าน</td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td bgcolor="#FF6600">การแสดงผลข้อมูล</td>
</tr>
<tr>
<td><a href="showdep.php">-แสดงผลข้อมูลภาควิชา</a></td>
</tr>
<tr>
<td><a href="showuser.php">-แสดงผลข้อมูลผู้ใช้บัณฑิต</a></td>
</tr>
<tr>
<td><a href="showadmin.php">-แสดงผลข้อมูลผู้ดูแลระบบ</a></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td><a href="evaluation.php">ระบบการประเมินผู้ใช้บัณฑิต</a></td>
</tr>
</table></td>
<td width="950" align="center" valign="top">
<form name="dep" method="post" action="insertdev.php">
<table width="473" height="229" border="1">
<tr>
<td height="23" colspan="2" bgcolor="#FF6600" align="center"><strong>กรอกข้อมูล</strong></td>
</tr>
<tr>
<td width="111" height="32">รหัสภาควิชา</td>
<td width="346" align="left">
<label>
<input type="text" name="dep_id" id="dep_id" />
</label>
</td>
</tr>
<tr>
<td height="30">ชื่อภาควิชา</td>
<td align="left"><input type="text" name="dep_name" id="dep_name" /></td>
</tr>
<tr>
<td height="32">คณะ</td>
<td align="left"><label>
<select name="faculty" id="faculty">
<option value="1">ศึึกษาศาสตร์</option>
<option value="2">วิทยาศาสตร์และเทคโนโลยี</option>
<option value="3">มนุษยศาสตร์และสังคมศาสตร์</option>
<option value="4">วิทยาการสื่อสาร</option>
<option value="5">รัฐศาสตร์</option>
<option value="6">วิทยาลัยอิสลาม</option>
<option value="7">ศิลปกรรมศาสตร์</option>
</select>
</label> </td>
</tr>
<tr>
<td height="26">อีเมล</td>
<td align="left"><input type="text" name="email" id="email" /></td>
</tr>
<tr>
<td>เบอร์โทรศัพท์</td>
<td align="left"><input type="text" name="tell" id="tell" /></td>
</tr>
<tr>
<td colspan="2" align="center"> <input type="submit" name="ap" id="ap" value="ยืนยัน" onClick="return OnSubmit()"> <input type="reset" name="clos" id="clos" value="ยกเลิก" /></td>
</tr>
</table>
</form>
</td>
<td width="2" align="center" valign="top"> </td>
</tr>
<tr>
<td height="23"> </td>
<td> </td>
<td> </td>
</tr>
</table>
</body>
</html>
เมื่อกี๋ลืม ไปคอมเม้นท์ตอนเพิ่มข้อมูลลงฐานข้อมูล อ่าๆ แก้ให้แล้วนะ
|
ประวัติการแก้ไข 2011-08-13 14:48:40
|
|
|
|
Date :
2011-08-13 14:37:50 |
By :
arm8957 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลืมใส่ $ ครับ
Code (PHP)
$result = mysql_query("INSERT INTO department( $dep_id, $dep_name, $faculty, $email, $tell )
|
|
|
|
|
Date :
2011-08-13 14:42:28 |
By :
niti_kub |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตรงนี้ไม่ใส่ $ ถูกแล้วครับ เพราะมันเป็นชื่อฟิลด์ครับ
Code (PHP)
$result = mysql_query("INSERT INTO department( dep_id, dep_name, faculty, email, tell ) VALUES ('$...' , '$...')");
ส่วนที่ต้องใส่ $ มันจะเป็นค่าของตัวแปรที่เราจะบันทึกลงในฐานข้อมูลครับ
|
ประวัติการแก้ไข 2011-08-13 14:47:28
|
|
|
|
Date :
2011-08-13 14:46:26 |
By :
arm8957 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อ้าว 55+โทษที
|
|
|
|
|
Date :
2011-08-13 14:48:16 |
By :
niti_kub |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อิอิ
|
|
|
|
|
Date :
2011-08-13 14:50:01 |
By :
sunnyonto |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
พอยืนยันมันเป็นงี้ครับ
|
|
|
|
|
Date :
2011-08-13 14:52:46 |
By :
sunnyonto |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คุณอ้างพาทตรงนี้ถูกไม๊ครับ หรือว่ามีการสรา้งไฟล์นี้ขึ้นมายัง เพราะ ERROR มันบอกว่าไม่เจอไฟล์ที่คุณเรียก
Code (PHP)
action="insertdev.php"
|
ประวัติการแก้ไข 2011-08-13 15:13:40
|
|
|
|
Date :
2011-08-13 14:55:20 |
By :
arm8957 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|