|
|
|
มีพี่คนไหนช่วยได้บ้างครับ.....โปรเจคอิเลินนิ่ง ผมจะให้ช่วยมาดูให้หน่อยครับ |
|
|
|
|
|
|
|
เอา error มาแปะซิครับ
|
|
|
|
|
Date :
2010-09-17 20:08:46 |
By :
PlaKriM |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<?php require_once('Connections/myconn.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
$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"] == "form1")) {
$insertSQL = sprintf("INSERT INTO student (Student_ID, F_name, L_name, Password, Sex, Class_ID) VALUES (%s, %s, %s, %s, %s, %s)",
GetSQLValueString($_POST['studentid'], "int"),
GetSQLValueString($_POST['fristname'], "text"),
GetSQLValueString($_POST['lastname'], "text"),
GetSQLValueString($_POST['studentpassword'], "text"),
GetSQLValueString($_POST['radio'], "int"),
GetSQLValueString($_POST['class'], "int"));
mysql_select_db($database_myconn, $myconn);
$Result1 = mysql_query($insertSQL, $myconn) or die(mysql_error());
$insertGoTo = "index.php";
if (isset($_SERVER['QUERY_STRING'])) {
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
$insertGoTo .= $_SERVER['QUERY_STRING'];
}
header(sprintf("Location: %s", $insertGoTo));
}
mysql_select_db($database_myconn, $myconn);
$query_rsRoom = "SELECT * FROM `class` ORDER BY Room ASC";
$rsRoom = mysql_query($query_rsRoom, $myconn) or die(mysql_error());
$row_rsRoom = mysql_fetch_assoc($rsRoom);
$totalRows_rsRoom = mysql_num_rows($rsRoom);
?><!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=utf-8" />
<title>ลงทะเบียนนักเรียน</title>
<style type="text/css">
<!--
.style36 { font-size: 14px;
font-weight: bold;
}
.style16 {color: #FF0000}
.style37 {
font-family: AngsanaUPC;
font-weight: bold;
font-size: 24px;
color: #FFFFFF;
}
.style38 {font-size: 16px}
-->
</style>
</head>
<body>
<form id="form1" name="form1" method="post" action="<?php echo $editFormAction; ?>">
<p> </p>
<table width="1028" height="670" border="3" align="center" cellpadding="0" cellspacing="0">
<tr>
<td><table width="912" border="0" align="center">
<tr>
<td><span class="style36">ข้อมูลส่วนตัว</span></td>
</tr>
</table>
<table width="910" height="444" border="2" align="center" cellpadding="0" cellspacing="0" bordercolor="#666666">
<tr bgcolor="#EFEFEF">
<td width="923"><table width="908" height="469" border="0" align="center" bordercolor="#EFEFEF">
<tr bordercolor="#FFFFFF" bgcolor="#666666">
<td height="31" colspan="2"><span class="style37">ลงทะเบียนนักเรียน</span></td>
</tr>
<tr bgcolor="#EFEFEF">
<td width="394" height="77"><div align="right" class="style36">รหัสประจำตัว :</div>
<p> </p></td>
<td width="504"><label>
<input name="studentid" type="text" id="studentid" size="25" maxlength="5" />
<span class="style16"><br />
<span class="style38"> *(นักเรียนให้ใช้เลขประจำตัว)</span><br />
<br />
</span></label></td>
</tr>
<tr bgcolor="#EFEFEF">
<td height="36"><div align="right" class="style36">รหัสผ่าน :</div></td>
<td><label>
<input name="studentpassword" type="password" id="studentpassword" size="25" maxlength="4" />
<span class="style16">* ใช้เป็นตัวเลข 4 หลัก</span></label></td>
</tr>
<tr bgcolor="#EFEFEF">
<td height="33"><div align="right" class="style36">ยืนยันรหัสผ่าน :</div></td>
<td><input name="confirmpass" type="text" id="confirmpass" size="25" maxlength="4" /></td>
</tr>
<tr bgcolor="#EFEFEF">
<td height="31"><div align="right" class="style36">ชื่อ - นามสกุล :</div></td>
<td><label>
<input name="fristname" type="text" id="fristname" size="25" maxlength="30" />
<input name="lastname" type="text" id="lastname" size="25" maxlength="50" />
</label></td>
</tr>
<tr bgcolor="#EFEFEF">
<td height="32"><div align="right" class="style36">ห้องเรียน :</div></td>
<td><label>
<select name="class" id="class">
<?php
do {
?>
<option value="<?php echo $row_rsRoom['Room']?>"><?php echo $row_rsRoom['Room']?></option>
<?php
} while ($row_rsRoom = mysql_fetch_assoc($rsRoom));
$rows = mysql_num_rows($rsRoom);
if($rows > 0) {
mysql_data_seek($rsRoom, 0);
$row_rsRoom = mysql_fetch_assoc($rsRoom);
}
?>
</select>
</label></td>
</tr>
<tr bgcolor="#EFEFEF">
<td height="41"><div align="right" class="style36">เพศ :</div></td>
<td><label> ชาย
<input type="radio" name="radio" id="ชาย" value="0" />
หญิง
<input type="radio" name="radio" id="radio" value="1" />
</label></td>
</tr>
<tr bgcolor="#EFEFEF">
<td height="41"> </td>
<td> </td>
</tr>
<tr bgcolor="#EFEFEF">
<td height="41"> </td>
<td><input type="submit" name="Submit" id="Submit" value="ลงทะเบียน" /></td>
</tr>
<tr bgcolor="#EFEFEF">
<td height="41"> </td>
<td> </td>
</tr>
<tr bgcolor="#EFEFEF">
<td height="41"> </td>
<td><label></label></td>
</tr>
</table></td>
</tr>
</table>
<table width="913" border="0" align="center">
<tr>
<td width="907"><span class="style36">หมายเหตุ : <span class="style16">*</span> หมายถึง จำเป็นต้องกรอกข้อมูล</span></td>
</tr>
</table></td>
</tr>
</table>
<p></p>
<input type="hidden" name="MM_insert" value="form1" />
</form>
</body>
</html>
<?php
mysql_free_result($rsRoom);
?>
__________________
คือมันเป็นส่วนสมัครสมาชิกอะคับ ตอนแรกมันสมัครได้แล้วทีนี้มันสมัครไม่ได้แล้วอ่ะ
|
|
|
|
|
Date :
2010-09-17 20:16:48 |
By :
bazz |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
โค้ดที่ Gen จาก Dreamware นี่มันอ่านยากพอควรแฮะ
ว่าแต่มัน Error ไม๊ หรือแค่มันไม่เข้า db
ถ้า Error เอามาแปะที
|
|
|
|
|
Date :
2010-09-17 21:02:37 |
By :
deawx |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
พอกดลงทะเบียนเสดปุ๊บแล้วมันขึ้นแบบนี้อ่ะครับ
|
|
|
|
|
Date :
2010-09-17 21:27:55 |
By :
bazz |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แปลได้ตรงๆ ตัวว่าใน table ไม่มี field ชื่อ password
|
|
|
|
|
Date :
2010-09-17 21:45:59 |
By :
PlaKriM |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คาดว่า เป็น reserve word ^^
|
|
|
|
|
Date :
2010-09-17 22:03:14 |
By :
pjgunner.com |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
นับเป็นความโชคร้ายของเจ้าของกระทู้เป็นแท้
ใครช่วยได้ช่วย น้องเขาหน่อยครับ
นุ๋กลัว code gen ไม่คบคนเขียน code gen มันฉาบฉวยครับ
|
|
|
|
|
Date :
2010-09-17 23:19:05 |
By :
peterxp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้วครับ ขอบคุนน้ำใจพี่ทุกคนมากนะครับ
|
|
|
|
|
Date :
2010-09-18 01:07:31 |
By :
bazz |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|