|
|
|
form กด submit ไม่ได้ครับ ขอความรู้จากผู้รู้หน่อยครับ |
|
|
|
|
|
|
|
คือปัญหามันมีอย่างนี้ครับ
ผมได้ทำ Form บันทึกข้อมูลครับ แล้วทำการ Check Validate เรียบร้อยแล้วครับ แต่มันไม่สามารถบันทึกข้อมูลได้
เนื่องจาก ไม่สามารถกดปุ่ม Submit ได้อ่าครับ ตอนแรกผมเข้าใจว่า Code ในสว่นของปุ่ม Submit มีปัญหา
ผมเลยทำการเขียน Submit ใหม่ ก็สามารถบันทึกได้ครับ แต่พอมาปิด แล้วมาเปิดใหม่ ก็เป็นเหมือนเดิมครับ หรือว่า Function ในการ Check มีปัญหาอ่าครับ ตอนนี้ยังแก้ไม่ได้อ่าครับ ขอผู้รู้ช่วยดูให้ทีครับ
Code (PHP)
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<link rel="stylesheet" type="text/css" href="../css/style.css" />
<script language="JavaScript">
function link(){
location.href="../cooperative/add_program.php";
}
function checkFields() {
missinginfo = "";
if (document.form1.title_name.value == "") {
missinginfo +="\n" + "- หลักสูตรสาขา ";
}
if (missinginfo != "") {
missinginfo ="ท่านยังไม่กรอกข้อมูลในช่องต่อไปนี้ :\n" +
"____________________________\n" +
missinginfo + "\n____________________________" +
"\nกรุณากลับไปกรอกอีกครั้ง ";
alert(missinginfo);
return false;
}
else return true;
}
</script>
<script type="text/javascript">
//------------------------------------------- ตรวจสอบการเพิ่มข้อมูล ---------------------------------------------
var HttPRequest = false;
function CallPOSTRequest(url,parameters) {
HttPRequest = false;
if (window.XMLHttpRequest) { // Mozilla, Safari,...
HttPRequest = new XMLHttpRequest();
if (HttPRequest.overrideMimeType) {
HttPRequest.overrideMimeType('text/html');
}
} else if (window.ActiveXObject) { // IE
try {
HttPRequest = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
HttPRequest = new ActiveXObject("Microsoft.XMLHTTP");
} catch (e) {}
}
}
if (!HttPRequest) {
alert('Cannot create XMLHTTP instance');
return false;
}
HttPRequest.onreadystatechange = alertContener;
HttPRequest.open('POST', url, true);
HttPRequest.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
HttPRequest.setRequestHeader("Content-length", parameters.length);
HttPRequest.setRequestHeader("Connection", "close");
HttPRequest.send(parameters);
}
function alertContener() {
if (HttPRequest.readyState == 4) {
if (HttPRequest.status == 200) {
result = HttPRequest.responseText;
document.getElementById('myspan').innerHTML = result;
} else {
//alert('There was a problem with the request.');
result = HttPRequest.responseText;
document.getElementById('myspan').innerHTML = result;
}
}
}
function SubmitContent(value) {
var textArea = document.getElementById('program_name');
var len = textArea.value.length;
var check=1;
if(len==0){
document.getElementById('myspan').style.color="#FF0000";
document.getElementById('myspan').innerHTML='<img src="images/no2.png"> กรุณากรอกข้อมูล';
}
else{
document.getElementById('myspan').style.visibility = 'hidden';
document.getElementById('myspan').style.visibility = 'visible';
var poststr = "program=" + encodeURI(document.getElementById('program_name').value);
CallPOSTRequest('check_program.php',poststr);
}
}
function chkprogrram_name(){
var textArea = document.getElementById('program_name');
var len = textArea.value.length;
var check=1;
if(len==0){
document.getElementById('msg_progrram_name').style.color="#FF0000";
document.getElementById('msg_progrram_name').innerHTML='<img src="images/no2.png"> กรุณากรอกข้อมูล';
}else{
document.getElementById('msg_progrram_name').style.color="#00CC00";
document.getElementById('msg_progrram_name').innerHTML='<img src="images/accept2.png">';
check=0;
}
return check;
}
//------------------------------------------- ตรวจสอบค่าว่าง ---------------------------------------------
function regchk(){
var check1=SubmitContent();
if(check1==0){
return true
}
return false
}
</script>
</head>
<?php
include('connectdb.php');
$sql_show = "select program_code from program ORDER BY program_code DESC";
$result_show = mysql_query($sql_show) or die(mysql_error());
$row_show = mysql_fetch_array($result_show);
$id=$row_show['program_code'];
$id = $id + 1;
$min = 2;
for($i=strlen($id); $i < $min; $i++){
$show_id = $show_id . 0;
}
$show_id = $show_id.$id;
?>
<body>
<fieldset style="width:750px">
<legend><font color="fff">เพิ่มข้อมูลหลักสูตรสาขา</font></legend>
<form method="post" action="save_program.php" autocomplete="off">
<table width="700" border="0" cellpadding="2" cellspacing="2" align="center">
<tr>
<td width="96" align="left"> </td>
<td width="126" align="left"> </td>
<td width="233" align="left"> </td>
<td width="219" align="left"> </td>
</tr>
<tr>
<td align="left"> </td>
<td align="left">รหัสหลักสูตรสาขา</td>
<td align="left"><INPUT NAME="program_code" TYPE="hidden" value="<?=$show_id?>" MAXLENGTH="2">
<INPUT NAME="program_code" TYPE="text" disabled value="<?=$show_id?>" MAXLENGTH="2" size='35'></td>
<td align="left"></td>
</tr>
<tr>
<td align="left"> </td>
<td align="left">ชื่อหลักสูตรสาขา</td>
<td align="left"><input type="text" name="program_name" id="program_name" size="35" class="text_field" onBlur="SubmitContent();"/></td>
<td align="left"><span id="myspan" class="text7"></span></td>
</tr>
<tr>
<td align="left"> </td>
<td align="left"> </td>
<td align="left"><input type="submit" value="บันทึก" class="bottom" onClick="return regchk();" /><input NAME="cancel" TYPE="button" onClick="link();" VALUE="ยกเลิก" class="bottom" /></td>
<td align="left"> </td>
</tr>
</table>
</form>
</fieldset>
</body>
</html>
Tag : PHP, HTML/CSS, JavaScript, Ajax, jQuery, CakePHP
|
|
|
|
|
|
Date :
2011-09-23 05:00:34 |
By :
apinanza |
View :
3752 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SubmitContent ไม่เห็น return อะไรมา
|
|
|
|
|
Date :
2011-09-23 06:08:48 |
By :
ikikkok |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
นี่ครับ file นี้
Code (PHP)
<?
include('connectdb.php');
$strSQL = "SELECT * FROM program WHERE program_name = '".trim($_POST["program"])."' ";
$objQuery = mysql_query($strSQL);
$intRows = mysql_num_rows($objQuery);
if($intRows>0)
{
echo "<font color='#FF0000'><IMG SRC=\"images/no2.png\" WIDTH=\"15\" HEIGHT=\"15\" BORDER=\"0\"> ".$_POST["program"]."คุณเพิ่มข้อมูลนี้ไปแล้ว</font>";
}
else
{
if(trim($_POST["program"]) != ""){
echo "<font color='#008000'><IMG SRC=\"images/accept2.png\" WIDTH=\"15\" HEIGHT=\"15\" BORDER=\"0\"></font>";
}
}
mysql_close
?>
|
|
|
|
|
Date :
2011-09-23 12:45:48 |
By :
apinanza |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|