|
|
|
รบกวนช่วยดูโค๊ดให้หน่อยค่ะ เวลากด edit แล้ว ข้อมูลใน textbox มันวรรคข้างหน้าเองค่ะ แก้ไขยังไงดีค่ะ |
|
|
|
|
|
|
|
คือเวลาเรากด edit แล้ว ในช่อง textbox มันจะวรรคข้างหน้าเอง ทำให้ตัวเลขข้างหลังหายไปค่ะ อาย่างเช่น ช่อง เบอร์โทร ดิฉันจะกำลัง max ไว้แค่ 10 แต่เวลาเรากด edit ข้อมูลนัั้นแล้ว มันจะวรรคเองข้างหน้าทำให้ตัวเลขข้างหลังหายไปค่ะ แก้ไขยังไงค่ะ ไม่เคยเจอปัญหานี้ค่ะ
Code (PHP)
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>จัดการข้อมูลนักเรียน</title>
</head>
<body>
<?
$host = "localhost";
$username = "root";
$password = "1234";
$dbname = "tonkla_db";
$tblname = "student";
$link = mysql_connect($host,$username,$password);
mysql_query("SET NAMES UTF8");
mysql_select_db($dbname,$link);
$result = mysql_query($query,$link);
//$num_rows = mysql_num_rows($result);
//$objQuery = mysql_query($query);
//$objResult = mysql_fetch_array($objQuery);
?>
<?
//add
if($_POST["hdnCmd"]=="Add")
{
$strSQL = " INSERT INTO student ";
$strSQL .= " (stu_id, stu_pname, stu_name, stu_sex, stu_password, stu_address, stu_tel, stu_parent, stu_class, tea_id) ";
$strSQL .= " values ";
$strSQL .= " ('".$_POST["atxstu_id"]."','".$_POST["atxstu_pname"]."' ";
$strSQL .= " ,'".$_POST["atxstu_name"]."' ";
$strSQL .= " ,'".$_POST["atxstu_sex"]."','".$_POST["atxstu_password"]."' ";
$strSQL .= " ,'".$_POST["atxstu_address"]."','".$_POST["atxstu_tel"]."' ";
$strSQL .= " ,'".$_POST["atxstu_parent"]."','".$_POST["atxstu_class"]."' ";
$strSQL .= " ,'".$_POST["atxtea_id"]."') ";
$objQuery = mysql_query($strSQL);
if(!$objQuery)
{
echo " error save [".mysql_error()."] ";
}
}
//update
if($_POST["hdnCmd"] == "Update")
{
$strSQL = " UPDATE student SET ";
$strSQL .= " stu_id = '".$_POST["etxstu_id"]."' ";
$strSQL .= " ,stu_pname = '".$_POST["etxstu_pname"]."' ";
$strSQL .= " ,stu_name = '".$_POST["etxstu_name"]."' ";
$strSQL .= " ,stu_sex = '".$_POST["etxstu_sex"]."' ";
$strSQL .= " ,stu_password = '".$_POST["etxstu_password"]."' ";
$strSQL .= " ,stu_address = '".$_POST["etxstu_address"]."' ";
$strSQL .= " ,stu_tel = '".$_POST["etxstu_tel"]."' ";
$strSQL .= " ,stu_parent = '".$_POST["etxstu_parent"]."' ";
$strSQL .= " ,stu_class = '".$_POST["etxstu_class"]." '";
$strSQL .= " ,tea_id = '".$_POST["etxtea_id"]." '";
$strSQL .= " WHERE stu_id = '".$_POST["hdnEditstu_id"]."' ";
$objQuery = mysql_query($strSQL);
if(!$objQuery)
{
echo " error update [".mysql_error()."] ";
}
}
//delete
if($_GET["Action"]== "Del")
{
$strSQL = " DELETE FROM student ";
$strSQL .= " WHERE stu_id = '".$_GET["stuID"]."' ";
$objQuery = mysql_query($strSQL);
if(!$objQuery)
{
echo " error delete [".mysql_error()."] ";
}
}
$strSQL = " select * from student ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
?>
<form name="frmMain" method="post" action="<?=$_SERVER["PHP_SELF"];?>">
<input type="hidden" name="hdnCmd" value="">
<table width="600" border="1">
<tr>
<th width="91"> <div align="center">รหัสนักเรียน</div></th>
<th width="98"> <div align="center">คำนำหน้าชื่อ</div></th>
<th width="198"> <div align="center">ชื่อ-สกุล</div></th>
<th width="91"> <div align="center">เพศ</div></th>
<th width="97"> <div align="center">Password</div></th>
<th width="91"> <div align="center">ที่อยู่ปัจจุบัน</div></th>
<th width="91"> <div align="center">เบอร์โทรศัพท์</div></th>
<th width="91"> <div align="center">ชื่อผู้ปกครอง</div></th>
<th width="91"> <div align="center">ห้องเรียน</div></th>
<th width="91"> <div align="center">รหัสครูผู้ดูแล</div></th>
<th width="91"> <div align="center">ชื่อครูผู้ดูแล</div></th>
<th width="91"> <div align="center">Edit</div></th>
<th width="91"> <div align="center">Delete</div></th>
</tr>
<?
while($objResult = mysql_fetch_array($objQuery))
{
?>
<?
if($objResult["stu_id"] == $_GET["stuID"] and $_GET["Action"] == "Edit")
{
?>
<tr>
<td><div align="center">
<input name = "etxstu_id" type = "text" value = " <?=$objResult["stu_id"];?> " size="10" maxlength="5" >
<input type = "hidden" name = "hdnEditstu_id" value =" <?=$objResult["stu_id"];?> " ></div></td>
<td><input name = "etxstu_pname" type = "text" value = " <?=$objResult["stu_pname"];?> " size="10"></td>
<td><input name = "etxstu_name" type = "text" value = " <?=$objResult["stu_name"];?> " size="25"> </td>
<td><div align="center"> <input name = "etxstu_sex" type = "text" value = " <?=$objResult["stu_sex"];?> " size="10"></div></td>
<td><input name = "etxstu_password" type = "text" value = " <?=$objResult["stu_password"];?> " size="20" maxlength="13"></td>
<td><textarea name="etxstu_address"> <?=$objResult["stu_address"];?> </textarea></td>
<td> <input name = "etxstu_tel" type = "text" value = " <?=$objResult["stu_tel"];?> " size="20" maxlength="10"></td>
<td> <input name = "etxstu_parent" type = "text" value = " <?=$objResult["stu_parent"];?> " size="20"></td>
<td> <input name = "etxstu_class" type = "text" value = " <?=$objResult["stu_class"];?> " size="7"></td>
<td> <input name = "etxtea_id" type = "text" value = " <?=$objResult["tea_id"];?> " size="10"></td>
<td> <input name = "etxtea_name" type = "text" value = " <?=$objResult["tea_name"];?> " size="20"></td>
<td colspan="2" align="right"><div align="center">
<input name = "btnAdd" type = "button" id = "btnUpdate" value = "Update" onClick = " frmMain.hdnCmd.value='Update';frmMain.submit(); " >
<input name = "btnAdd" type = "button" id = "btnCancel" value = "Cancel" onClick = " window.location='<?=$_SERVER["PHP_SELF"];?>'; " ></div></td>
</tr>
<?
}
else
{
?>
<tr>
<td><div align="center"><?=$objResult["stu_id"];?></div></td>
<td><?=$objResult["stu_pname"];?></td>
<td><?=$objResult["stu_name"];?></td>
<td><div align="center"><?=$objResult["stu_sex"];?></div></td>
<td align="left"><?=$objResult["stu_password"];?></td>
<td align="left"><?=$objResult["stu_address"];?></td>
<td align="left"><?=$objResult["stu_tel"];?></td>
<td align="left"><?=$objResult["stu_parent"];?></td>
<td align="center"><?=$objResult["stu_class"];?></td>
<td align="center"><?=$objResult["tea_id"];?></td>
<td><?=$objResult["tea_name"];?></td>
<td align="center"><a href="<?=$_SERVER["PHP_SELF"];?>?Action=Edit&stuID=<?=$objResult["stu_id"];?>">Edit</a></td>
<td align="center"><a href="JavaScript:if(confirm('Confirm Delete?')==true){window.location='<?=$_SERVER["PHP_SELF"];?>?Action=Del&stuID=<?=$objResult["stu_id"];?>';}">Delete</a></td></tr>
<?
}
?>
<?
}
?>
<tr>
<td><div align="center"><input name="atxstu_id" type="text" size="10" maxlength="5"></div></td>
<td><input name="atxstu_pname" type="text" size="10"></td>
<td><input name="atxstu_name" type="text" size="25"></td>
<td><input name="atxstu_sex" type="text" size="10"></td>
<td><input name="atxstu_password" type="text" size="20" maxlength="13"></td>
<td><textarea name="atxstu_address"></textarea></td>
<td><input name="atxstu_tel" type="text" size="20" maxlength="10"></td>
<td><input name="atxstu_parent" type="text" size="20"></td>
<td><input name="atxstu_class" type="text" size="7"></td>
<td><input name="atxtea_id" type="text" size="10" maxlength="5"></td>
<td><input name="atxtea_name" type="text" size="20"></td>
<td colspan="2" align="right"><div align="center">
<input name="btnAdd" type="button" id="btnAdd" value="Add" onClick="frmMain.hdnCmd.value='Add';frmMain.submit();"></div></td></tr>
</table>
</form>
<?
mysql_close($link);
?>
</body>
</html>
Tag : PHP
|
|
|
|
|
|
Date :
2013-02-05 12:49:33 |
By :
ต.แต้ว |
View :
838 |
Reply :
9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
trim($_POST['Username']); // ตัดค่าว่างหน้าหลัง
|
|
|
|
|
Date :
2013-02-05 12:53:30 |
By :
Ex-[S]i[L]e[N]t |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้ละค่ะ แต่ถ้าเวลา เราใส่รหัส 00001 มันตัด 0000 ข้างหน้าออก เหลือแค่ 1 ตัวเดียว ต้องทำไงค่ะ
|
|
|
|
|
Date :
2013-02-05 13:07:46 |
By :
ต.แต้ว |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แต่ถ้าเวลา เราใส่รหัส 00001 มันตัด 0000 ข้างหน้าออก เหลือแค่ 1 ตัวเดียว ต้องทำไงค่ะ
|
|
|
|
|
Date :
2013-02-05 13:14:34 |
By :
ต.แต้ว |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้าใช้ trim แล้วเกิดปัญหา (ในกรณีที่เกิดจาก trim เท่านั้นนะคะ) ลองแบบนี้ดูค่ะ
ตรงนี้อะค่ะ value = " <?=$objResult["stu_id"];?> "
เอาช่องว่างภายใต้เครื่องหมาย "" ออกนะคะ เป็น value = "<?=$objResult["stu_id"];?>"
ลองดูก่อนนะคะ
|
|
|
|
|
Date :
2013-02-05 13:41:42 |
By :
ultrasiam |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตั้งให้ฟิลด์เป็น varchar ครับ ถ้าตั้งเป็น int จะตัด 0 ด้านหน้าออก
|
|
|
|
|
Date :
2013-02-05 13:58:31 |
By :
deawx |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|