|
|
|
รบกวนช่วยดูด้วยนะครับ การจัดเก็บข้อมูลลงฐานข้อมมูล มีบางตัวที่ไม่ลง ผมว่าดูละเอียดแล้ว ลืมไรกันแน่! |
|
|
|
|
|
|
|
Code From (PHP)
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<title>Untitled Document</title>
</head>
<center>
<body>
<form name="form1" method="post" action="u_add.php">
<table width="99%" border="" style="width: 1140px; height: 70px;">
<tr>
<th style="width: 140px">Username</th>
<th style="width: 140px">Password</th>
<th style="width: 140px">Frist Name</th>
<th style="width: 140px">Last Name</th>
<th style="width: 120px">Sex</th>
<th style="width: 170px">Department</th>
<th style="width: 170px">Position</th>
<th style="width: 120px">Status</th>
</tr>
<tr>
<td><input type="text" name="txtUsername" placeholder="Username" style="width: 100%; height: 30px;"></td>
<td><input type="text" name="txtPassword" placeholder="Password" style="width: 100%; height: 30px;"></td>
<td><input type="text" name="txtFristName" placeholder="Frist Name" style="width: 100%; height: 30px;"></td>
<td><input type="text" name="txtLastName" placeholder="Last Name" style="width: 100%; height: 30px;"></td>
<?
$strDefault1 = "1";
?>
<td><select name="Sex" style="width: 100%; height: 30px;">
<option value=""><-- Sex --></option>
<option>Male</option>
<option>Female</option>
</select></td>
<?
$strDefault2 = "1";
mysql_connect("localhost","root","123456") or die(mysql_error());
mysql_select_db("dbboard");
?>
<td><select name="Dep" style="width: 100%; height: 30px;">
<option value=""><-- Department --></option>
<?
mysql_query("SET NAMES UTF8");
$strSQL1 = "SELECT * FROM department ORDER BY dep_id ASC";
$objQuery1 = mysql_query($strSQL1);
while($objResuut1 = mysql_fetch_array($objQuery1))
{
if($strDefault2 == $objResuut1["department"])
{
$sel = "selected";
}
?>
<option value="<?php echo $objResuut1["dep_id"];?>"<?php echo $sel;?>><?php echo $objResuut1["dep_name"];?></option>
<?
}
?>
</select></td>
<?
$strDefault3 = "1";
mysql_connect("localhost","root","123456") or die(mysql_error());
mysql_select_db("dbboard");
?>
<td><select name="Pos" style="width: 100%; height: 30px;">
<option value=""><-- Position --></option>
<?
mysql_query("SET NAMES UTF8");
$strSQL2 = "SELECT * FROM position ORDER BY pos_id ASC";
$objQuery2 = mysql_query($strSQL2);
while($objResuut2 = mysql_fetch_array($objQuery2))
{
if($strDefault3 == $objResuut2["position"])
{
$sel = "selected";
}
?>
<option value="<?php echo $objResuut2["pos_id"];?>"<?php echo $sel;?>><?php echo $objResuut2["pos_name"];?></option>
<?
}
?>
</select></td>
<?
$strDefault4 = "1";
?>
<td><select name="Status" style="width: 100%; height: 30px;">
<option value=""><-- Status --></option>
<option>User</option>
<option>Admin</option>
</select></td>
</tr>
</table>
<input name="Submit1" type="submit" value="submit">
</form>
</body>
</center>
</html>
กับ
Code add(PHP)
<?
$objConnect = mysql_connect("localhost","root","123456") or die("Error Connect to Database");
$objDB = mysql_select_db("dbboard");
mysql_query("SET NAMES UTF8");
$strSQL = "INSERT INTO member (username,password,fname,lname,sex,dep_id,pos_id,status) ";
$strSQL .="VALUES ";
$strSQL .="(' ".$_POST["txtUsername"]." ',' ".$_POST["txtPassword"]." ',' ".$_POST["txtFristName"]." ' ";
$strSQL .=",' ".$_POST["txtLastName"]." ',' ".$_POST["Sex"]." ',' ".$_POST["Dep"]." ',' ".$_POST["Pos"]." ',' ".$_POST["Status"]." ') ";
$objQuery = mysql_query($strSQL);
if($objQuery)
{
echo "Save Done.";
}
else
{
echo "Error Save [".$strSQL."]";
}
mysql_close($objConnect);
?>
<?
$host = "localhost";
$user = "root";
$pass = "123456";
$db = "dbboard";
$tbl = "member";
mysql_connect($host, $user, $pass) or die("Can not contact the database server.");
mysql_select_db($db) or die("cannot select the database.");
mysql_query("SET NAMES UTF8");
$strSQL1 = "SELECT * FROM department WHERE dep_id = '".$_POST["dep"]."' ";
$objQuery1 = mysql_query($strSQL1);
$objResult1 = mysql_fetch_array($objQuery1);
mysql_close();
?>
<?
$hostname = "localhost";
$username = "root";
$password = "123456";
$dbname = "dbboard";
$tblname = "member";
mysql_connect($hostname, $username, $password) or die("Can not contact the database server.");
mysql_select_db($dbname) or die("cannot select the database.");
mysql_query("SET NAMES UTF8");
$strSQL2 = "SELECT * FROM position WHERE pos_id = '".$_POST["pos"]."' ";
$objQuery2 = mysql_query($strSQL2);
$objResult2 = mysql_fetch_array($objQuery2);
mysql_close();
?>
รายละเอียด
รบกวนช่วยดูหน่อยนะครับ พอดีติดอยู่ตรงที่ว่า insert แล้วเข้า db เกือบหมด ยกเว้น Sex, Status นี่แหล่ะ
ผมติดอยู่นานเลยเช็คแล้วเช็คอีก หรือผมเขียนตรงไหนผิดป่าวครับ รบกวนช่วยดูให้หน่อยครับ ขอบคุณครับ
Tag : PHP, MySQL, CakePHP
|
|
|
|
|
|
Date :
2015-08-27 23:05:10 |
By :
NuItMaster |
View :
670 |
Reply :
5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
option ไม่มี value
|
|
|
|
|
Date :
2015-08-27 23:10:24 |
By :
CasanovaKung |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ยังไม่เข้าครับ Sex, Status
|
|
|
|
|
Date :
2015-08-27 23:33:57 |
By :
NuItMaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ค่าที่ได้ ของ $_POST['Sex'] เป็น Male หรือ Female แล้วfield type เป็น varchar หรือ integer ครับ
กำหนดถูกหรือเปล่าครับ
|
|
|
|
|
Date :
2015-08-28 06:56:40 |
By :
NewbiePHP |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ ผมเปลี่ยน field type ของ Sex,Status เป็น varchar สรุปง่ายๆ แต่ผมลืมนึกถึง db 555+ ขอบคุณครับทุกท่าน
|
|
|
|
|
Date :
2015-08-28 09:28:59 |
By :
NuItMaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ปล.อีกนิด
08.$strSQL .="(' ".$_POST["txtUsername"]." ',' ".$_POST["txtPassword"]." ','
08.$strSQL .="('วรรค".$_POST["txtUsername"]."วรรค','วรรค".$_POST["txtPassword"]."วรรค','
วรรคสีแดง ไม่ควรมีนะครับ มันทำให้ข้อมูลเพี้ยน
|
|
|
|
|
Date :
2015-08-28 11:52:41 |
By :
NewbiePHP |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|