|
|
|
ช่วยดูโค๊ดให้หน่อยนะค่ะ จาก PHP MySQL Add/Insert/Edit/Delete to MySQL On Same Form |
|
|
|
|
|
|
|
แก้ไขไม่ออกค่ะ
ลบ มันไม่ลบ
เพิ่ม มันไม่เพิ่ม
แก้ยังไงก็ไม่ได้ค่ะ ช่วยหน่อยน่คะ
Code (PHP)
<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>
<?
$host = "localhost";
$username = "root";
$password = "1234";
$dbname = "tonkla_db";
$tblname = "teacher";
$link = mysql_connect($host,$username,$password);
mysql_select_db($dbname,$link);
//$query = "Select * from teacher where tea_id = '".$_SESSION['tea_id']."'";
mysql_query("SET NAMES UTF8");
$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 teacher";
$strSQL .="(tea_id,tea_pname,tea_name,tea_sex,tea_password,tea_address,tea_tel,tea_position_tea_mail)";
$strSQL .="values";
$strSQL .= "('".$_POST["atxtea_id"]."','".$_POST["atxtea_pname"]."'";
$strSQL .= ",'".$_POST["atxtea_name"]."'";
$strSQL .= ",'".$_POST["atxtea_sex"]."','".$_POST["atxtea_password"]."'";
$strSQL .= ",'".$_POST["atxtea_address"]."','".$_POST["atxtea_tel"]."'";
$strSQL .= ",'".$_POST["atxtea_position"]."','".$_POST["atxtea_mail"]."')";
$objQuery = mysql_query($strSQL);
if(!$objQuery)
{
echo"error save [".mysql_error()."]";
}
}
//update
if($_POST["hdnCmd"]=="Update")
{
$strSQL = "UPDATE teacher SET";
$strSQL .= "tea_id='".$_POST["etxtea_id"]."'";
$strSQL .= ",tea_pname='".$_POST["etxtea_pname"]."'";
$strSQL .= ",tea_name='".$_POST["etxtea_name"]."'";
$strSQL .= ",tea_sex='".$_POST["etxtea_sex"]."'";
$strSQL .= ",tea_password='".$_POST["etxtea_password"]."'";
$strSQL .= ",tea_address='".$_POST["etxtea_address"]."'";
$strSQL .= ",tea_tel='".$_POST["etxtea_tel"]."'";
$strSQL .= ",tea_position='".$_POST["etxtea_position"]."'";
$strSQL .= ",tea_mail='".$_POST["etxtea_mail"]."'";
$strSQL .= "where tea_id = '".$_POST["hdnEdittea_id"]."'";
$objQuery = mysql_query($strSQL);
if(!$objQuery)
{
echo"error update [".mysql_error()."]";
}
}
//delete
if($_GET["Action"]=="Del")
{
$strSQL = "DELETE FROM teacher";
$strSQL .= "WHERE tea_id = '".$_GET["tea_id"]."'";
$objQuery = mysql_query($strSQL);
if(!$objQuery)
{
echo"error delete [".mysql_error()."]";
}
}
$strSQL = "select * from teacher";
$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">TeacherID</div></th>
<th width="98"> <div align="center">pName</div></th>
<th width="198"> <div align="center">Name</div></th>
<th width="91"> <div align="center">Sex</div></th>
<th width="97"> <div align="center">Password</div></th>
<th width="91"> <div align="center">Address</div></th>
<th width="91"> <div align="center">Tel</div></th>
<th width="91"> <div align="center">Position</div></th>
<th width="91"> <div align="center">Mail</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["tea_id"]== $_GET["tea_id"] and $_GET["Action"]=="Edit")
{
?>
<tr>
<td><div align="center">
<input type="text" name="etxtea_id" value="<?=$objResult["tea_id"];?>" >;
<input type="hidden" name="hdnEditTea_id" value="<?=$objResult["tea_id"];?>" >;
</div></td>
<td><input type="text" name="etxtea_pname" value="<?=$objResult["tea_name"];?>">;</td>
<td><input type="text" name="etxtea_name" value="<?=$objResult["tea_pname"];?>">; </td>
<td align="right"> <input type="text" name="etxtea_sex" value="<?=$objResult["tea_sex"];?>"></td>
<td align="right"><input type="text" name="etxtea_password" value="<?=$objResult["tea_sex"];?>"></td>
<td align="right"> <input type="text" name="etxtea_address" value="<?=$objResult["tea_address"];?>"></td>
<td align="right"> <input type="text" name="etxtea_tel" value="<?=$objResult["tea_tel"];?>"></td>
<td align="right"> <input type="text" name="etxtea_position" value="<?=$objResult["tea_position"];?>"></td>
<td align="right"> <input type="text" name="etxtea_mail" value="<?=$objResult["tea_mail"];?>"></td>
<td colspan="2" align="right"><div align="center">
<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["tea_id"];?></div></td>
<td><?=$objResult["tea_pname"];?></td>
<td><?=$objResult["tea_name"];?></td>
<td><?=$objResult["tea_sex"];?></td>
<td><?=$objResult["tea_password"];?></td>
<td><?=$objResult["tea_address"];?></td>
<td><?=$objResult["tea_tel"];?></td>
<td><?=$objResult["tea_position"];?></td>
<td><?=$objResult["tea_mail"];?></td>
<td align="center"><a href="<?=$_SERVER["PHP_SELF"];?>?Action=Edit&teaID=<?=$objResult["tea_id"];?>"Edit</a></td>
<td align="center"><a href="JavaScript:if(confirm('Confirm Delete?')==true){window.location='<?=$_SERVER["PHP_SELF"];?>?Action=Del&tea_id=<?=$objResult["tea_id"];?>';}">Delete</a></td></tr>
<?
}
?>
<?
}
?>
<tr>
<td><div align="center"><input type="text" name="atxtea_id"></div></td>
<td><input type="text" name="atxtea_pname"></td>
<td><input type="text" name="atxtea_name"></td>
<td><input type="text" name="atxtea_sex"></td>
<td><input type="text" name="atxtea_password"></td>
<td><input type="text" name="atxtea_address"></td>
<td><input type="text" name="atxtea_tel"></td>
<td><input type="text" name="atxtea_position"></td>
<td><input type="text" name="atxtea_mail"></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-01-31 13:48:43 |
By :
นศ.ปี4 |
View :
1540 |
Reply :
11 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
$strSQL = " DELETE FROM teacher ";
$strSQL .= " WHERE tea_id = '".$_GET["tea_id"]."' ";
$objQuery = mysql_query($strSQL);
เคาะพวก space ด้วยครับ
|
|
|
|
|
Date :
2013-01-31 13:50:16 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้วค่ะ แล้วตรง Add ละค่ะ ต้องเคาะเหมือนกันป่าวค่ะ
|
|
|
|
|
Date :
2013-01-31 13:54:37 |
By :
นศ.ปี4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ครับ เพราะถ้าคุณไม่วรรค มันจะต่อติดกัน ทำให้ SQL ออกมาผิดครับ
|
|
|
|
|
Date :
2013-01-31 13:56:31 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เคาะ หมดทุกอัน แล้วค่ะ แต่ตอนเรา Add ข้อมูลไปใหม่ มัน ขึ้นว่า error save [Column count doesn't match value count at row 1] ค่ะ
|
|
|
|
|
Date :
2013-01-31 13:59:19 |
By :
นศ.ปี4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตรงช่อง update มันไม่มี ปุ่ม button ว่า update และไม่มี textbox ที่จะแก้ไขข้อมูลคะ
|
|
|
|
|
Date :
2013-01-31 14:08:03 |
By :
นศ.ปี4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แก้ไขยังไงค่ะ รบกวนอีกทีค่ะ
|
|
|
|
|
Date :
2013-01-31 14:14:29 |
By :
นศ.ปี4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตรงช่อง edit มันไม่มี ปุ่ม button ว่า updateและไม่มี textbox ที่จะแก้ไขข้อมูลคะ
|
|
|
|
|
Date :
2013-01-31 15:06:50 |
By :
นศ.ปี4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
สร้างขึ้นมาสิครับ
|
|
|
|
|
Date :
2013-01-31 15:09:26 |
By :
Lov3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
สร้างขึ้นแล้วค่ะ แต่กด edit แล้วไม่มีอะไรเกิดขึ้นเลยค่ะ
|
|
|
|
|
Date :
2013-01-31 15:35:43 |
By :
นศ.ปี4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?
if($objResult["tea_id"] == $_GET["teaID"] and $_GET["Action"] == "Edit")
{
?>
<tr>
<td><div align="center">
<input type = "text" name = "etxtea_id" value = " <?=$objResult["tea_id"];?> " >
<input type = "hidden" name = "hdnEdittea_id" value =" <?=$objResult["tea_id"];?> " ></div></td>
<td><input type = "text" name = "etxtea_pname" value = " <?=$objResult["tea_pname"];?> "></td>
<td><input type = "text" name = "etxtea_name" value = " <?=$objResult["tea_name"];?> "> </td>
<td><div align="center"> <input type = "text" name = "etxtea_sex" value = " <?=$objResult["tea_sex"];?> "></div></td>
<td align="right"><input type = "text" name = "etxtea_password" value = " <?=$objResult["tea_password"];?> "></td>
<td align="right"> <input type = "text" name = "etxtea_address" value = " <?=$objResult["tea_address"];?> "></td>
<td align="right"> <input type = "text" name = "etxtea_tel" value = " <?=$objResult["tea_tel"];?> "></td>
<td align="right"> <input type = "text" name = "etxtea_position" value = " <?=$objResult["tea_position"];?> "></td>
<td align="right"> <input type = "text" name = "etxtea_mail" value = "<?=$objResult["tea_mail"];?> "></td>
<td colspan="2" align="right"><div align="center">
<input name = "btnAdd" type = "button" id = "btnUpdate" value = "Update" onClick = "frmMain.hdnCmd.value='Upadte';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["tea_id"];?></div></td>
<td><?=$objResult["tea_pname"];?></td>
<td><?=$objResult["tea_name"];?></td>
<td><div align="center"><?=$objResult["tea_sex"];?></div></td>
<td><?=$objResult["tea_password"];?></td>
<td><?=$objResult["tea_address"];?></td>
<td><?=$objResult["tea_tel"];?></td>
<td><?=$objResult["tea_position"];?></td>
<td><?=$objResult["tea_mail"];?></td>
<td align="center"><a href ="<?=$_SERVER["PHP_SELF"];?>?Action = Edit&teaID =<?=$objResult["tea_id"];?>">Edit</a></td>
<td align="center"><a href ="JavaScript:if(confirm('Confirm Delete?') == true){window.location ='<?=$_SERVER["PHP_SELF"];?>?Action = Del&teaID = <?=$objResult["tea_id"];?>';}"> Delete </a></td></tr>
<?
}
?>
<?
}
?>
|
|
|
|
|
Date :
2013-01-31 15:44:59 |
By :
นศ.ปี4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|