|
|
|
มีปัญหาเกี่ยว IE กับ Firefox ค่ะ คือว่าทำเว็บค่ะ แล้วทีนี้มีปัญหา ตรงที่หน้าฟอร์มที่การเพิ่มข้อมูล |
|
|
|
|
|
|
|
.ใช้ java script หรือเปล่าครับ เอา code มาให้ดูก็จะดีมาก
|
|
|
|
|
Date :
28 ก.พ. 2551 23:58:01 |
By :
bb |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
java script ก็มีค่ะเอาไว้ใช้เช็คตัวเลข
โค้ดตามนี้เลยค่ะ
<?php require_once('Connections/repairs.php'); ?>
<?php require_once('Connections/repairs.php'); ?>
<?php
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
$theValue = (!get_magic_quotes_gpc()) ? addslashes($theValue) : $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"] == "frmAdd")) {
$insertSQL = sprintf("INSERT INTO service (date_time, location, comp_id, person, `position`, tel, problem, type) VALUES (%s, %s, %s, %s, %s, %s, %s, %s)",
GetSQLValueString($_POST['date_time'], "text"),
GetSQLValueString($_POST['location'], "text"),
GetSQLValueString($_POST['comp_id'], "text"),
GetSQLValueString($_POST['person'], "text"),
GetSQLValueString($_POST['position'], "text"),
GetSQLValueString($_POST['tel'], "text"),
GetSQLValueString($_POST['problem'], "text"),
GetSQLValueString($_POST['type'], "text"));
mysql_select_db($database_repairs, $repairs);
$Result1 = mysql_query($insertSQL, $repairs) or die(mysql_error());
$insertGoTo = "insertok.php?ids=" . $row_rsSer['id'] . "";
if (isset($_SERVER['QUERY_STRING'])) {
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
$insertGoTo .= $_SERVER['QUERY_STRING'];
}
header(sprintf("Location: %s", $insertGoTo));
}
$colname_rsSer = "-1";
if (isset($_GET['ids'])) {
$colname_rsSer = (get_magic_quotes_gpc()) ? $_GET['ids'] : addslashes($_GET['ids']);
}
mysql_select_db($database_repairs, $repairs);
$query_rsSer = sprintf("SELECT * FROM service WHERE id = %s", $colname_rsSer);
$rsSer = mysql_query($query_rsSer, $repairs) or die(mysql_error());
$row_rsSer = mysql_fetch_assoc($rsSer);
$totalRows_rsSer = mysql_num_rows($rsSer);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874" />
<LINK REL="stylesheet" TYPE="text/css" HREF="style/style.css">
<title>กรอกข้อมูลการแจ้งซ่อม</title>
</head>
<body>
<SCRIPT language=JavaScript>
function check_number() {
e_k=event.keyCode
if (e_k != 13 && (e_k < 46) || (e_k > 57)) {
event.returnValue = false;
alert("ข้อมูล หมายเลขครุภัณฑ์ ต้องเป็นตัวเลขเท่านั้น เช่น 1,2,3,... \nกรุณาตรวจสอบข้อมูลของท่านอีกครั้งครับ...");
}
}
</script>
<form action="<?php echo $editFormAction; ?>" id="frmAdd" name="frmAdd" method="POST">
<table width="1024" border="0" align="center" cellpadding="1" cellspacing="1">
<tr bgcolor="#99CCCC">
<td height="48" colspan="2" bgcolor="#99CCCC"><div align="center">
<?
include('header.php');
a?><br />
กรุณาแจ้งรายการปัญหาเบื้องต้น <br />
</div></td>
</tr>
<tr>
<td width="350" bgcolor="#CCFFFF"><div align="right">กรอกรายละเอียดเกี่ยวกับปัญหา : </div></td>
<td width="667" bgcolor="#CCFFFF"><label>
<textarea name="problem" id="problem"><?php echo $row_rsSer['problem']; ?></textarea>
</label></td>
</tr>
<tr>
<td height="29" bgcolor="#CCFFFF"><div align="right">ประเภท : </div></td>
<td bgcolor="#CCFFFF"><label>
<select name="type" id="type">
<option value="">กรุณาเลือกประเภท</option><option value="Network">Network</option>
<option value="Hardware">Hardware</option>
<option value="Software">Software</option>
<option value="ไวรัส">ไวรัส</option>
<option value="อื่นๆ">อื่นๆ</option>
<?php
do {
?>
<option value="<?php echo $row_rsSer['id']?>"><?php echo $row_rsSer['type']?></option>
<?php
} while ($row_rsSer = mysql_fetch_assoc($rsSer));
$rows = mysql_num_rows($rsSer);
if($rows > 0) {
mysql_data_seek($rsSer, 0);
$row_rsSer = mysql_fetch_assoc($rsSer);
}
?>
</select>
</label></td>
</tr>
<tr>
<td bgcolor="#CCFFFF"><div align="right">หมายเลขครุภัณฑ์ : </div></td>
<td bgcolor="#CCFFFF"><label>
<input name="comp_id" type="text" id="comp_id" onKeyPress="check_number();" value="<?php echo $row_rsSer['comp_id']; ?>" maxlength="6" />
(ถ้ามี
)</label></td>
</tr>
<tr>
<td bgcolor="#CCFFFF"><div align="right">ผู้แจ้งซ่อม : </div></td>
<td bgcolor="#CCFFFF"><label>
<input name="person" type="text" id="person" value="<?php echo $row_rsSer['person']; ?>" />
</label></td>
</tr>
<tr>
<td bgcolor="#CCFFFF"><div align="right">
<label></label>
ตำแหน่ง :
</div></td>
<td bgcolor="#CCFFFF"><input name="position" type="text" id="position" value="<?php echo $row_rsSer['position']; ?>" /></td>
</tr>
<tr>
<td bgcolor="#CCFFFF"><div align="right">หน่วยงาน : </div></td>
<td bgcolor="#CCFFFF"><input name="location" type="text" id="location" value="<?php echo $row_rsSer['location']; ?>" /></td>
</tr>
<tr>
<td height="26" bgcolor="#CCFFFF"><div align="right">เบอร์โทรกลับ : </div></td>
<td bgcolor="#CCFFFF"><input name="tel" type="text" id="tel" value="<?php echo $row_rsSer['tel']; ?>" /></td>
</tr>
<tr>
<td bgcolor="#CCFFFF"><div align="right">ขณะนี้ :
</div></td>
<td bgcolor="#CCFFFF"><div align="left">
<input name="date_timeT" type="text" id="date_timeT" disabled value="<?php $date = date("j/n/Y , g:i:s a"); echo $date ;?>" /><input name="date_time" type="hidden" id="date_time" value="<?php $date = date("j/n/Y , g:i:s a"); echo $date ;?>" />
</div></td>
</tr>
<tr>
<td bgcolor="#CCFFFF"> </td>
<td bgcolor="#CCFFFF"> </td>
<td>
</tr>
<tr>
<td bgcolor="#CCFFFF"><div align="right">
<input name="Submit" type="submit" id="Submit" value="บันทึก" />
</div></td>
<td bgcolor="#CCFFFF">
<input name="reset" type="reset" id="reset" value="ยกเลิก" />
</div></td></td>
</tr>
</table>
<input type="hidden" name="MM_insert" value="frmAdd">
</form>
<?
include('footer.php');
?>
</body>
</html>
<?php
mysql_free_result($rsSer);
?>
|
|
|
|
|
Date :
29 ก.พ. 2551 00:14:23 |
By :
neonai07 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่น่าจะมีปัญหานะ
ลองเอาไปรันที่ IE ของเครื่องอื่นดูหรือยัง
เท่าที่ดูก็ที เปิด-ปิด form และ ปุ่ม submit แล้ว ไม่น่าจะมีปัญหา
|
|
|
|
|
Date :
29 ก.พ. 2551 08:49:41 |
By :
... |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่เอาหน้า insert มาด้วยหล่ะครับ
|
|
|
|
|
Date :
29 ก.พ. 2551 23:33:52 |
By :
ผ่านมาเรื่อยๆ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";แปลว่าอะไรค่ะ ช่วยตอบที
|
|
|
|
|
Date :
2009-03-26 14:41:05 |
By :
snow |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|