|
|
|
เวลากด update แล้วมัน insert ข้อมูลลง DB 2record ครับ งงมา2 วันหาทางออกไม่ได้ซักที่ |
|
|
|
|
|
|
|
Code (PHP)
<?
//????????????????? Session
ob_start();
session_start();
//session_cache_expire(30);
//$cache_expire = session_cache_expire();
if(empty($_SESSION[user_login])) // ????????????????? login ???????
{
header('location:login.php');
exit();
}
?>
<html>
<head>
<title>Staff Valuation</title>
<link type="text/css" href="../css/jquery-ui-1.8.5.custom.css" rel="Stylesheet" />
<link rel="stylesheet" href="../datepicker.css">
<link rel="stylesheet" href="../css/smoothness/jquery.ui.all.css">
<script src="../js/jquery-1.7.1.js"></script>
<script src="../js/jquery.ui.core.js"></script>
<script src="../js/jquery.ui.widget.js"></script>
<script src="../js/jquery.ui.datepicker.js"></script>
<script src="../js/jquery-1.4.2.min.js" type="text/javascript"></script>
<script src="../js/jquery-ui-1.8.5.custom.min.js" type="text/javascript"></script>
<script>
$(function() {
$( "#wp_from" ).datepicker( {
dateFormat: 'yy-mm-dd',
changeMonth: true
} );
$( "#wp_to" ).datepicker( {
dateFormat: 'yy-mm-dd',
changeMonth: true ,
numberOfMonths: 3,
showButtonPanel: true
});
$( "#cont_from" ).datepicker({
dateFormat: 'yy-mm-dd',
changeMonth: true
});
$( "#cont_to" ).datepicker( {
dateFormat: 'yy-mm-dd',
changeMonth: true ,
numberOfMonths: 3,
showButtonPanel: true
});
});
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
</script>
<script language="JavaScript" type="text/JavaScript">
<!--
//-->
</script>
</head>
<body>
<?
include("../inc/DB_Conf.php");
//$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
//$objDB = mysql_select_db("mydatabase");
//*** Update Condition ***//
if($_POST["hdnCmd"] == "Update")
{
$textvaluation_no=$_REQUEST[textvaluation_no];
$textvaluation_no= $textvaluation_no;
$strSQL = "UPDATE user_detail SET ";
$strSQL .="wp_start_date='".$_REQUEST[wp_from]."'";
$strSQL .=",wp_end_date='".$_REQUEST[wp_to]."'";
$strSQL .=",contract_start_date='".$_REQUEST[cont_from]."'";
$strSQL .=",contract_end_date='".$_REQUEST[cont_to]."'";
$strSQL .=",valuation_scoll='".$_REQUEST[textscoll]."'";
$strSQL .=",valuation_no='".$textvaluation_no."'";
$strSQL .=",valuation_saraly_hr='".$_REQUEST[textwork_hr]."'";
$strSQL .=",valuation_saraly_month='".$_REQUEST[textwork_month]."'";
$strSQL .=",valuation_update_date='".date('Y-m-d')."'";
$strSQL .=",valuation_update_by='".$_SESSION[sess_staffid]."'";
$strSQL .="WHERE staff_id = '".$_POST["hdnEditstaff_id"]."' ";
$objQuery = mysql_query($strSQL);
$strSQL="";
echo $strSQL;
//
if(!$objQuery)
{
echo "Error Update [".mysql_error()."]";
}
//
$strSQL2 = "INSERT INTO valuation_log ";
$strSQL2 .="(valuation_staff_log,wp_start_date_log,wp_end_date_log, ";
$strSQL2 .="contract_start_date_log,contract_end_date_log,";
$strSQL2 .="valuation_scoll_log,valuation_no_log,";
$strSQL2 .="valuation_saraly_hr_log,valuation_saraly_month_log,";
$strSQL2 .="update_date_log,update_by_log)";
$strSQL2 .="VALUES ";
$strSQL2 .="('".$_REQUEST[hdnEditstaff_id]."','".$_REQUEST[wp_from_log]."','".$_REQUEST[wp_to_log]."' ";
$strSQL2 .=",'".$_REQUEST[cont_from_log]."','".$_REQUEST[cont_to_log]."' ";
$strSQL2 .=",'".$_REQUEST[textscoll_log]."','".$_REQUEST[textvaluation_no_log]."' ";
$strSQL2 .=",'".$_REQUEST[textwork_hr_log]."','".$_REQUEST[textwork_month_log]."' ";
$strSQL2 .=",'".$_REQUEST[valuation_update_date]."','".$_SESSION[sess_staffid]."') ";
$objQuery2 = mysql_query($strSQL2);
$strSQL2="";
echo $strSQL2;
if(!$objQuery2)
{
echo "Error Update [".mysql_error()."]";
}
//header("location:$_SERVER[PHP_SELF]");
//exit();
}
$strSQL = "SELECT * FROM user_detail WHERE valuation_group = $_SESSION[sess_valuation_group]";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
?>
<? echo print_r($_session) ?>
<form name="frmMain" method="post" action="<?=$_SERVER["PHP_SELF"];?>">
<input type="hidden" name="hdnCmd" value="">
<table width="1230" border="1" align="center">
<tr>
<th width="62" rowspan="2"> <div align="center"># ID </div></th>
<th width="120" rowspan="2"> <div align="center">Staff name </div></th>
<th colspan="2">Work Visa </th>
<th colspan="2">Contact</th>
<th width="96" rowspan="2">Valuation Scoll</th>
<th width="96" rowspan="2">Valuation No. </th>
<th colspan="2">Saraly</th>
<th> </th>
<th> </th>
</tr>
<tr>
<th width="120"><div align="center">Start</div></th>
<th width="120"><div align="center">End</div></th>
<th width="79"><div align="center">Start</div></th>
<th width="96"><div align="center">End</div></th>
<th width="96"> <div align="center">Hourly Rate </div></th>
<th width="153"> <div align="center">Month Rate </div></th>
<th width="58"> <div align="center">Edit </div></th>
<th width="58"> <div align="center">Delete </div></th>
</tr>
<?
while($objResult = mysql_fetch_array($objQuery))
{
?>
<?
if($objResult["staff_id"] == $_GET["CusID"] and $_GET["Action"] == "Update")
{
?>
<tr bgcolor="#FFFF66">
<td><div align="center">
<?=$objResult["staff_id"];?>
<input type="hidden" name="hdnEditstaff_id" size="5" value="<?=$objResult["staff_id"];?>">
</div></td>
<td><?=$objResult["user_name"]." ".$objResult["user_familyname"];?></td>
<td>
<input type="text" id="wp_from" name="wp_from" value="<?=$objResult["wp_start_date"];?>"/>
<input type="text" id="wp_from_log" name="wp_from_log" value="<?=$objResult["wp_start_date"];?>"/> </td>
<td>
<input type="text" id="wp_to" name="wp_to" value="<?=$objResult["wp_end_date"];?>"/>
<input type="text" id="wp_to_log" name="wp_to_log" value="<?=$objResult["wp_end_date"];?>"/> </td>
<td>
<input type="text" id="cont_from" name="cont_from" value="<?=$objResult["contract_start_date"];?>"/>
<input type="text" id="cont_from_log" name="cont_from_log" value="<?=$objResult["contract_start_date"];?>"/> </td>
<td><input type="text" id="cont_to" name="cont_to" value="<?=$objResult["contract_end_date"];?>"/>
<input type="text" id="cont_to_log" name="cont_to_log" value="<?=$objResult["contract_end_date"];?>"/></td>
<td><input name="textscoll" type="text" value="<?=$objResult["valuation_scoll"];?>" size="10">
<input name="textscoll_log" type="hidden" value="<?=$objResult["valuation_scoll"];?>" size="10">
<input name="valuation_update_date" type="hidden" value="<?=$objResult["valuation_update_date"];?>" size="10"> </td>
<td>
<? $valuation_number=$objResult["valuation_no"];$valuation_number=$valuation_number+1;echo $valuation_number?>
<input name="textvaluation_no" type="hidden" value="<?=$valuation_number;?>" size="10">
<input name="textvaluation_no_log" type="hidden" value="<?=$objResult["valuation_no"];?>" size="10"> </td>
<td><input name="textwork_hr" type="text" value="<?=$objResult["valuation_saraly_hr"];?>" size="10">
<input name="textwork_hr_log" type="hidden" value="<?=$objResult["valuation_saraly_hr"];?>" size="10"></td>
<td align="right"><input type="text" name="textwork_month" value="<?=$objResult["valuation_saraly_month"]; ?>"size="10">
<input type="hidden" name="textwork_month_log" value="<?=$objResult["valuation_saraly_month"]; ?>"size="10"></td>
<td colspan="2" align="right"><table width="100" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="32"><div align="center">
<input name="btnAdd" type="image" id="btnUpdate" value="Update" src="../images/3floppy_mount.png" width="30" height="30" OnClick="frmMain.hdnCmd.value='Update';frmMain.submit();">
</div></td>
<td><div align="center">
<input name="btnAdd" type="image" id="btnCancel" value="Cancel" src="../images/close_box_red.png" width="30" height="30" OnClick="window.location='<?=$_SERVER["PHP_SELF"];?>';">
</div> </td>
<td><div align="center">
<a href="javascript:MM_openBrWindow('popup.php?id=<?=$objResult["staff_id"]?>','','width=500,height=500')"><img src="../images/get_info.png" width="30" height="30" border="0"></a>
</div> </td>
</tr>
</table> </td>
</tr>
<?
}
else
{
?>
<tr>
<td><div align="center"><?=$objResult["staff_id"];?></div></td>
<td><?=$objResult["user_name"]." ".$objResult["user_familyname"];?></td>
<td><?=$objResult["wp_start_date"];?></td>
<td><?=$objResult["wp_end_date"];?></td>
<td><?=$objResult["contract_start_date"];?></td>
<td><?=$objResult["contract_end_date"];?></td>
<td><?=$objResult["valuation_scoll"];?></td>
<td><?=$objResult["valuation_no"];?></td>
<td><?=$objResult["valuation_saraly_hr"];?></td>
<td align="right"><?=$objResult["valuation_saraly_month"];?></td>
<td colspan="2" align="center"><a href="<?=$_SERVER["PHP_SELF"];?>?Action=Update&CusID=<?=$objResult["staff_id"];?>">Update</a></td>
</tr>
<?
}
?>
<?
}
?>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td align="right"> </td>
<td colspan="2" align="right"> </td>
</tr>
</table>
</form>
<?
//mysql_close($objConnect);
?>
<?=$objResult["staff_id"];?>
</body>
</html>
Tag : PHP
|
|
|
|
|
|
Date :
2012-02-03 14:14:35 |
By :
ziix |
View :
1121 |
Reply :
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มันลงฐานข้อมูลชื่อว่าอะไรหรอ ชื่อ aluation_log นี่ป่าว
|
|
|
|
|
Date :
2012-02-03 15:29:46 |
By :
เจ้าปัญหา |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใช่ครับ save 2 record ที่table valuation_log
|
|
|
|
|
Date :
2012-02-03 17:05:26 |
By :
ziix |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แสดงว่ามันน่าจะ Submit ไป 2 ครั้งครับ
เคยมีกระทู้เก่า ๆ จำไม่ได้ประมาณว่า Form ทำการ submit แล้ว ยังไปใช้ form.submit ใน event อีก มันเลยเบิ้ล record ครับ
|
|
|
|
|
Date :
2012-02-04 10:38:12 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
รบกวนผู้รู้ช่วยวิเคราะห์ครับ
ผมเปลี่ยน บันทัดที่ 205 จาก type="image" กับมาเป็น type="button" (เหมือนกับตัวอย่าง https://www.thaicreate.com/php/php-mysql-add-insert-edit-delete-mysql-same-form.html) แล้วอาการ save 2 record ที่เป็นอยู่กับหายครับ แลยอยากทราบว่า อยาการดัง save 2 record มันจะเกี่ยวอะไรกับ button type ครับ และถ้าต้องการปุ่มเป็น Icon ต้องทำอย่างไรครับ เพราะมันใช้ type="image" ไม่ได้
|
|
|
|
|
Date :
2012-02-06 10:32:24 |
By :
ziix |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คุณจะต้องดูก่อนครับ ว่าถ้าคุณใช้ type submit หรือ image ซึ่ง event พวกนี้จะ submit อยู่แล้วหลังจาการ click ครับ แต่ถ้าคุณไปใช้ form.submit() ใน javascript อีก มันก็จะทำงาน 2 ครั้งครับ
|
|
|
|
|
Date :
2012-02-07 08:46:45 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณคุณ win มากครับ
รับทราบตามข้อมูลที่แจ้งครับ
|
|
|
|
|
Date :
2012-02-07 09:13:26 |
By :
ziix |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|