|
|
|
ผมรันผ่าน IE 11 มันบันทึกเบิ้ล รันผ่าน Chome บันทึกปกติครับ ข้อคำชี้เเนะหน่อยครับ |
|
|
|
|
|
|
|
Code (PHP)
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
if (PHP_VERSION < 6) {
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
}
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
$editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])) {
$editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
}
if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "adduser3")) {
$insertSQL = sprintf("INSERT INTO add_service (date, depat, depat1, time_sup, name_sup, code_mc, name_mc, status_sup, com_sup, status_mn) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s)",
GetSQLValueString($_POST['Tdate'], "date"),
GetSQLValueString($_POST['S_depat'], "date"),
GetSQLValueString($_POST['list1'], "text"),
GetSQLValueString($_POST['T_sup'], "text"),
GetSQLValueString($_POST['S_sup'], "text"),
GetSQLValueString($_POST['list2'], "text"),
GetSQLValueString($_POST['list3'], "text"),
GetSQLValueString($_POST['St_sup'], "text"),
GetSQLValueString($_POST['T_com'], "text"),
GetSQLValueString($_POST['TStatus_mn'], "text")
);
mysql_select_db($database_IT, $IT);
$Result1 = mysql_query($insertSQL, $IT) or die(mysql_error());
$insertGoTo ="index.php";
if (isset($_SERVER['QUERY_STRING'])) {
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
$insertGoTo .= $_SERVER['QUERY_STRING'];
}
header(sprintf("Location: %s", $insertGoTo));
}
$maxRows_User = 100;
$pageNum_User = 0;
if (isset($_GET['pageNum_User'])) {
$pageNum_User = $_GET['pageNum_User'];
}
$startRow_User = $pageNum_User * $maxRows_User;
mysql_select_db($database_IT, $IT);
$query_User = "SELECT * FROM add_service ORDER BY id DESC";
$query_limit_User = sprintf("%s LIMIT %d, %d", $query_User, $startRow_User, $maxRows_User);
$User = mysql_query($query_limit_User, $IT) or die(mysql_error());
$row_User = mysql_fetch_assoc($User);
if (isset($_GET['totalRows_User'])) {
$totalRows_User = $_GET['totalRows_User'];
} else {
$all_User = mysql_query($query_User);
$totalRows_User = mysql_num_rows($all_User);
}
$totalPages_User = ceil($totalRows_User/$maxRows_User)-1;
?>
|
|
|
|
|
Date :
2018-12-13 10:39:08 |
By :
pannawitaim |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมกดบันทึกใน IE มันลง 2 record เเต่ Chomeและตัวอื่นปกติครับ ลง1 record เป็นเฉพาะ IE ครับ
|
|
|
|
|
Date :
2018-12-13 11:54:35 |
By :
pannawitaim |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ก้นั้นไงครับ มันเป็นฝั่ง client ที่ส่งข้อมูลมาผิดผลาด คือ browser มันต่างกัน คูณก็ต้องพยามเขียนให้ใช้คำสั่งมาตรฐานหน่อยครับ
ผมก็ไม่เห็นว่าโค๊ดฝั่ง client เป็นยังไงก็ตอบไม่ได้
ส่วนลิงค์ที่ผมให้ไปดู มันเป็นโคีดที่ใช้ยกเลิก function ที่ถูก binding ซ้ำซ้อน ให้ทำแค่อันเดียว เป็น default function
ที่ผูกกับ object นั้นๆ คือคำสั่งนี้จะไม่ทำก็ได้ ถ้าเราเข้าใจการผูก function กับ object
|
|
|
|
|
Date :
2018-12-13 12:24:14 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ
|
|
|
|
|
Date :
2018-12-13 12:55:32 |
By :
pannawitaim |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|