|
|
|
error ค่ะ แก้มา 2 วันแล้ว เกิด error อ่ะค่ะ ผลจากการกดปุ่ม back จากฟอร์ม |
|
|
|
|
|
|
|
เกิด error อ่ะค่ะ ผลจากการกดปุ่ม back จากฟอร์ม Study.php มาHealth.php หรือไม่ก็เกิดaction history.back(); ของจาวาสคริปต์ รันใน IE จะมีปัญหาค่แต่รันใน FF ไม่มีปัญหา
[color=red ]โค๊ดHealth [/color]
Code (PHP)
<?
session_start();
header("Cache-control: private");
//error_reporting(0);
echo rand(1,1000);
?>
<?
include("startconnect.php");
?>
<?
extract($_POST);
extract($_GET);
extract($_REQUEST);
date_default_timezone_set("Asia/Bangkok");
?>
<form name="Health" method="post" action="Study.php" onsubmit="return Check()">
<? //ประวัติส่วนตัว
$Id = trim($_POST["Id"]);
$Fullname = trim($_POST["Title"])." ".trim($_POST["Fullname"]);
$Nickname = trim($_POST["Nickname"]);
$birthday = trim(($_POST["Year"]-543))."-".trim($_POST["Month"])."-".trim($_POST["Day"]);
$gender = $_POST["Gender"];
//exit(); ?>
<?
//ส่วนInsert ข้อมูล
//เพิ่มประวัติส่วนตัว
$sql ="insert into backgroundandpersonal(Id,Status)values('".$Id."','1')" ;
$result = mysql_query($sql);
if($submit=="หน้าถัดไป" && $Id !=null )
{
$update = "update backgroundandpersonal set Fullname ='$Fullname',Nickname='$Nickname',Birthday ='$birthday',Gender ='$gender' where Id='".$Id."' ";
$update_result = mysql_query($update, $Conn) or die(mysql_error());
}
//Uploadรูปภาพ
include("startconnect.php");
$Id = trim($_POST["Id"]);
if($submit=="หน้าถัดไป" && $Id !=null )
{
####จัดการรูปที่ upload เข้ามา
// http://www.goragod.com/knowledge-MIME%20Type%20List.html
if ( $_FILES['pic']['name'] != "" ) //ปิด if
{
$path = "pic_user" ; // ตรวจสอบว่ามีFolder pic_user หรือไม่ ถ้าไม่มีก็สร้างขึ้นมา
if(!is_dir($path)){
mkdir($path,0777) ;
}
$Upload_name=$_FILES['pic']['name'];//เอาชื่อไฟล์ที่อัพโหลดมาใส่ในตัวแปร $Upload_name
$Upload_Type=$_FILES['pic']['type']; //เอา=ชนิด ไฟล์ที่อัพโหลดมาใส่ในตัวแปร $Upload_Type
$Upload_size=$_FILES['pic']['size'];//ขนาดรูปภาพ
$Path_Upload_server=$_FILES['pic']['tmp_name']; //ที่เก็บไฟล์ tmp บน server
$lang_name=strlen($Upload_name); //หาความยาวตัวอักษรทั้งหมด
$new_name ="Pic-";
$new_name .= date("d-m-Y-H-i-s"); //ดึงเวลาปัจจุบันใส่ค่าตัวแปร
$Fname = substr($Upload_name,0,strpos($Upload_name,".")); //ตัดชื่อไฟลล์ เอามาเฉพาะนามสกุลไฟล์ เนื่องจากจะไปเปลี่ยน ชื่อไฟลเป็นวันที่อัพโหลดแทน
$new_name = eregi_replace ( $Fname, $new_name , $Upload_name ) ; // เปลี่ยนชื่อ ไฟล์ เป็นวันที่ปัจจุบัน
$new_name2="$path/$new_name";
copy($Path_Upload_server,"$new_name2");
//อัพเดทฐานข้อมูล
$query_Recordset1 = "update backgroundandpersonal set Image='$new_name2',Fullname ='$Fullname',Nickname='$Nickname',Birthday ='$birthday',Gender ='$gender' where Id='".$_POST["Id"]."' ";
$Recordset1 = mysql_query($query_Recordset1, $Conn) or die(mysql_error());
}
}
?>
<!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">
<!-- DW6 -->
<head>
<!-- Copyright 2005 Macromedia, Inc. All rights reserved. -->
<title>ข้อมูลด้านสุขภาพ</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874" />
<link rel="stylesheet" href="mm_health_nutr.css" type="text/css" />
<script language="JavaScript" type="text/javascript">
//--------------- LOCALIZEABLE GLOBALS ---------------
var d=new Date();
var monthname=new Array("January","February","March","April","May","June","July","August","September","October","November","December");
//Ensure correct for language. English is "January 1, 2004"
var TODAY = monthname[d.getMonth()] + " " + d.getDate() + ", " + d.getFullYear();
//--------------- END LOCALIZEABLE ---------------
</script>
<style type="text/css">
<!--
body,td,th {
font-family: Tahoma;
}
.style1 {color: #FF6600}
-->
</style>
<script language="JavaScript" type="text/JavaScript" >
function Check(){
if(document.Health.Disease.value ==""){
alert("กรุณาเลือกลักษณะข้อมูลโรคประจำตัวค่ะ");
document.Health.Disease.focus () ;
return false ;
}
}
</script>
</head>
<body bgcolor="#F4FFE4">
<table width="80%" border="0" cellspacing="0" cellpadding="0">
<tr bgcolor="#D5EDB3">
<td colspan="2" rowspan="2"><img src="mm_health_photo.jpg" alt="Header image" width="382" height="101" border="0" /></td>
<td width="600" height="50" id="logo" valign="bottom" align="center" nowrap="nowrap">insert website name</td>
<td width="5"> </td>
</tr>
<tr bgcolor="#D5EDB3">
<td height="51" id="tagline" valign="top" align="center">OPTIONAL TAGLINE HERE</td>
<td width="5"> </td>
</tr>
<tr>
<td colspan="4" bgcolor="#5C743D"><img src="mm_spacer.gif" alt="" width="1" height="2" border="0" /></td>
</tr>
<tr>
<td colspan="4" bgcolor="#99CC66" background="mm_dashed_line.gif"><img src="mm_dashed_line.gif" alt="line decor" width="4" height="3" border="0" /></td>
</tr>
<tr bgcolor="#99CC66">
<td> </td>
<td colspan="3" id="dateformat" height="20"><a href="Home.php">HOME</a> :: <script language="JavaScript" type="text/javascript">
document.write(TODAY); </script> </td>
</tr>
<td colspan="4" bgcolor="#5C743D"><img src="mm_spacer.gif" alt="" width="1" height="2" border="0" /></td>
</tr>
<tr>
<td width="48"> </td>
<td colspan="2" valign="top"> <br />
<br />
<table border="0" cellspacing="0" cellpadding="2" width="925">
<tr>
<td width="921" class="pageName">ข้อมูลด้านสุขภาพ</td>
</tr>
<tr>
<td class="bodyText">
<p>ท่านกำลังบันทึกข้อมูลด้านสุขภาพของ
<? echo $_POST["Title"] ; ?><? echo $_POST["Fullname"] ; ?> TH-905<? echo trim($_POST["Id"]) ; ?></p>
<p align="center">กรณีศึกษาประวัติเด็กใหม่<br />
<span class="style1">*กรุณากรอกข้อมูลให้ครบถ้วน</span> </p>
<br />
<?
// แสดงรูปภาพที่อัพโหลด
$Id = trim($_POST["Id"]);
$query_picger ="select * FROM backgroundandpersonal WHERE Id='$Id'";
$picger_db = mysql_query($query_picger) or die(mysql_error());
$row_picgerst = mysql_fetch_assoc($picger_db);
$Fullname = $row_picgerst[Fullname];
$Image = $row_picgerst['Image'];
?>
<div align="center"><img src="<? echo $Image ;?>" width="115" height="115"></div><br>
<table width="80%" border="0" bordercolor="#9999FF" bgcolor="#9999FF" align="center">
<tr>
<td><p>ร่างกายพิการ/อาการป่วยเรื้อรัง(โรคประจำตัว)</p></td>
</tr>
</table>
<table width="80%" border="0" align="center">
<tr>
<td width="62%"><label>
<input type="checkbox" name="Disease[]" value="100" >ไม่มี
<input type="checkbox" name="Disease[]" value="101" />ลมบ้าหมู
<input type="checkbox" name="Disease[]" value="102" />โรคหอบหืด
<input type="checkbox" name="Disease[]" value="103" /> โปลิโอ</label>
<label>
<input type="checkbox" name="Disease[]" value="104" /> พัฒนาการสมองช้า
<input type="checkbox" name="Disease[]" value="105" /> อื่น ๆ
<input type="text" name="DiseaseTheOther" value="" />
</label></td>
</tr>
</table>
<table width="80%" border="0" bordercolor="#9999FF" bgcolor="#9999FF" align="center">
<tr>
<td>ความพิการทางร่างกาย </td>
</tr>
</table>
<table width="80%" border="0" bordercolor="#9999FF" bgcolor="#9999FF" align="center">
</table>
<table width="80%" border="0" align="center">
<tr bgcolor="#FFCCFF">
<td width="20%"><label>กระดูกสันหลัง</label></td>
<td width="60%"><label>
<input type="radio" name="Backbone" id="Normal" value="ปรกติ" checked class="text" > ปรกติ
<input type="radio" name="Backbone" id="Injured" value="บาดเจ็บ" checked class="text" > บาดเจ็บ
<input type="radio" name="Backbone" id="Disease" value="เป็นโรค" checked class="text" > เป็นโรค
<input type="radio" name="Backbone" id="Birth" value="เป็นโดยกำเนิด" checked class="text" > เป็นโดยกำเนิด</label></td>
</tr>
<tr>
<td width="20%"><label>เท้าซ้าย</label></td>
<td width="60%">
<label>
<input type="radio" name="leftfoot" id="Normal" value="ปรกติ" checked class="text" > ปรกติ
<input type="radio" name="leftfoot" id="Injured" value="บาดเจ็บ" checked class="text" > บาดเจ็บ
<input type="radio" name="leftfoot" id="Disease" value="เป็นโรค" checked class="text" > เป็นโรค
<input type="radio" name="leftfoot" id="Birth" value="เป็นโดยกำเนิด" checked class="text" > เป็นโดยกำเนิด</label></td>
</tr>
</table>
<table width="80%" border="0" align="center">
<tr bgcolor="#FFCCFF">
<td width="20%"><label>เท้าขวา</label></td>
<td width="60%"><label>
<input type="radio" name="Rightfoot" id="Normal" value="ปรกติ" checked class="text" > ปรกติ
<input type="radio" name="Rightfoot" id="Injured"value="บาดเจ็บ" checked class="text" > บาดเจ็บ
<input type="radio" name="Rightfoot" id="Disease"value="เป็นโรค" checked class="text" > เป็นโรค
<input type="radio" name="Rightfoot" id="Birth" value="เป็นโดยกำเนิด" checked class="text" > เป็นโดยกำเนิด</label></td>
</tr>
</table>
<table width="80%" border="0" align="center">
<tr>
<td width="20%"><label>มือซ้าย</label></td>
<td width="60%"><label>
<input type="radio" name="lefthand" id="Normal "value="ปรกติ" checked class="text" > ปรกติ
<input type="radio" name="lefthand" id="Injured"value="บาดเจ็บ" checked class="text" > บาดเจ็บ
<input type="radio" name="lefthand" id="Disease"value="เป็นโรค" checked class="text" >เป็นโรค
<input type="radio" name="lefthand" id="Birth" value="เป็นโดยกำเนิด" checked class="text" > เป็นโดยกำเนิด</label></td>
</tr>
</table>
<table width="80%" border="0" align="center">
<tr bgcolor="#FFCCFF">
<td width="20%"><label>มือขวา </label></td>
<td width="60%"><label>
<input type="radio" name="Righthand" id="Normal" value="ปรกติ" checked class="text" > ปรกติ
<input type="radio" name="Righthand" id="Injured"value="บาดเจ็บ" checked class="text" >บาดเจ็บ
<input type="radio" name="Righthand" id="Disease"value="เป็นโรค" checked class="text" >เป็นโรค
<input type="radio" name="Righthand" id="Birth" value="เป็นโดยกำเนิด" checked class="text" >เป็นโดยกำเนิด</label></td>
</tr>
</table>
<table width="80%" border="0" align="center">
<tr>
<td width="20%"><label>ขาซ้าย</label></td>
<td width="60%"><label>
<input type="radio" name="leftleg" id="Normal" value="ปรกติ" checked class="text" >ปรกติ
<input type="radio" name="leftleg" id="Injured"value="บาดเจ็บ" checked class="text" >บาดเจ็บ
<input type="radio" name="leftleg" id="Disease"value="เป็นโรค" checked class="text" >เป็นโรค
<input type="radio" name="leftleg" id="Birth" value="เป็นโดยกำเนิด" checked class="text" >เป็นโดยกำเนิด</label></td>
</tr>
</table>
<table width="80%" border="0" align="center">
<tr bgcolor="#FFCCFF">
<td width="20%"><label>ขาขวา</label></td>
<td width="60%"><label>
<input type="radio" name="Rightleg" id="Normal" value="ปรกติ" checked class="text" >ปรกติ
<input type="radio" name="Rightleg" id="Injured" value="บาดเจ็บ" checked class="text" > บาดเจ็บ
<input type="radio" name="Rightleg" id="Disease" value="เป็นโรค" checked class="text" >เป็นโรค
<input type="radio" name="Rightleg" id="Birth" value="เป็นโดยกำเนิด" checked class="text" >เป็นโดยกำเนิด</label></td>
</tr>
</table>
<table width="80%" border="0" align="center">
<tr>
<td width="20%"><label>แขนซ้าย</label></td>
<td width="60%"><label>
<input type="radio" name="leftarm" id="Normal" value="ปรกติ" checked class="text" >ปรกติ
<input type="radio" name="leftarm" id="Injured"value="บาดเจ็บ" checked class="text" >บาดเจ็บ
<input type="radio" name="leftarm" id="Disease"value="เป็นโรค" checked class="text" >เป็นโรค
<input type="radio" name="leftarm" id="Birth" value="เป็นโดยกำเนิด" checked class="text" >เป็นโดยกำเนิด</label></td>
</tr>
</table>
<table width="80%" border="0" align="center">
<tr bgcolor="#FFCCFF">
<td width="20%"><label>แขนขวา</label></td>
<td width="60%"><label>
<input type="radio" name="Rightarm" id="Normal" value="ปรกติ" checked class="text" > ปรกติ
<input type="radio" name="Rightarm" id="Injured" value="บาดเจ็บ" checked class="text" > บาดเจ็บ
<input type="radio" name="Rightarm" id="Disease" value="เป็นโรค" checked class="text" >เป็นโรค
<input type="radio" name="Rightarm" id="Birth" value="เป็นโดยกำเนิด" checked class="text" >เป็นโดยกำเนิด</label></td>
</tr>
</table>
<br />
<table width="80%" border="0" align="center">
<tr bgcolor="#FFCCFF">
<td width="20%"><label>การพูด</label></td>
<td width="60%"><label>
<input type="radio" name="Speak" id="Normal" value="ปรกติ" checked class="text" > ปรกติ
<input type="radio" name="Speak" id="Abnormal" value="ไม่ปรกติ" checked class="text" >ไม่ปรกติ
<input type="radio" name="Speak" id="Deaf" value="เป็นใบ้" checked class="text" >เป็นใบ้ </label></td>
</tr>
</table>
<table width="80%" border="0" align="center">
<tr>
<td width="20%"><label>การได้ยิน</label></td>
<td width="60%"><label></label></td>
</tr>
</table>
<table width="80%" border="0" align="center">
<tr bgcolor="#FFCCFF">
<td width="20%"><label> หูข้างซ้าย</label></td>
<td width="60%"><label>
<input type="radio" name="Leftear" id="Normal" value="ปรกติ" checked class="text" >ปรกติ
<input type="radio" name="Leftear" id="Abnormal" value="ไม่ปรกติ" checked class="text" >ไม่ปรกติ
<input type="radio" name="Leftear" id="Deaf" value="หูหนวก" checked class="text" > หูหนวก </label></td>
</tr>
</table>
<table width="80%" border="0" align="center">
<tr>
<td width="20%"><label> หูข้างขวา</label></td>
<td width="60%"><label>
<input type="radio" name="Rightear" id="Normal" value="ปรกติ" checked class="text" >ปรกติ
<input type="radio" name="Rightear" id="Abnormal" value="ไม่ปรกติ" checked class="text" >ไม่ปรกติ
<input type="radio" name="Rightear" id="Deaf" value="หูหนวก" checked class="text" >หูหนวก </label></td>
</tr>
</table>
<table width="80%" border="0" align="center">
<tr bgcolor="#FFCCFF">
<td width="20%"><label>การมองเห็น</label></td>
<td width="60%"><label></label></td>
</tr>
</table>
<table width="80%" border="0" align="center">
<tr>
<td width="20%"><label> ตาข้างซ้าย</label></td>
<td width="60%"><label>
<input type="radio" name="Lefteye" id="Normal" value="ปรกติ" checked class="text" >ปรกติ
<input type="radio" name="Lefteye" id="Abnormal" value="ไม่ปรกติ" checked class="text" >ไม่ปรกติ
<input type="radio" name="Lefteye" id="Blind" value="ตาบอด" checked class="text" >ตาบอด </label></td>
</tr>
</table>
<table width="80%" border="0" bgcolor="#FFCCFF" align="center">
<tr>
<td width="20%" bgcolor="#FFCCFF"><label> ตาข้างขวา</label></td>
<td width="60%"><label>
<input type="radio" name="Righteye" id="Normal" value="ปรกติ" checked class="text" > ปรกติ
<input type="radio" name="Righteye" id="Abnormal" value="ไม่ปรกติ" checked class="text" >ไม่ปรกติ
<input type="radio" name="Righteye" id="Blind" value="ตาบอด" checked class="text" >ตาบอด </label></td>
</tr>
</table>
<br />
<table width="80%" border="0" align="center">
<tr bgcolor="#FFCCFF">
<td width="34%"><label> เด็กคนนี้ได้รับการรักษาเป็นประจำหรือไม่ </label></td>
<td width="66%"><label>
<input type="radio" name="Cure" id="Yes" value="ใช่" checked class="text" >ใช่
<input type="radio" name="Cure" id="No" value="ไม่ใช่" checked class="text" >ไม่ใช่ </label></td>
่ </tr>
</table>
<table width="80%" border="0" align="center">
<tr>
<td width="34%"><label> เด็กคนนี้ต้องทานยาเป็นประจำหรือไม่ </label></td>
<td width="66%"><label>
<input type="radio" name="Eat" id="Yes" value="ใช่" checked class="text" >ใช่
<input type="radio" name="Eat" id="No" value="ไม่ใช่" checked class="text" >ไม่ใช่</label></td>
</tr>
</table>
<input type="hidden" name="Id" value="<?=$_POST["Id"]?>" />
<input type="hidden" name="Title" value="<?=$_POST["Title"]?>" />
<input type="hidden" name="Fullname" value="<?=$_POST["Fullname"]?>" />
<input type="hidden" name="Nickname" value="<?=$_POST["Nickname"]?>" />
<input type="hidden" name="Day" value="<?=$_POST["Day"]?>" />
<input type="hidden" name="Month" value="<?=$_POST["Month"]?>" />
<input type="hidden" name="Year" value="<?=$_POST["Year"]?>" />
<input type="hidden" name="Gender" value="<?=$_POST["Gender"]?>" />
<input type="hidden" name="Activities" value="<?=$_POST["Activities"]?>" />
<input type="hidden" name="AcOther" value="<?=$_POST["AcOther"]?>" />
<input type="hidden" name="Theother" value="<?=$_POST["Theother"] ?>" />
<input type="hidden" name="Homework" value="<?=$_POST["Homework"]?>" />
<input type="hidden" name="HomeworkOther" value="<?=$_POST["HomeworkOther"]?>" />
<input type="hidden" name="HomeOther" value="<?=$_POST["HomeOther"]?>" />
<input type="hidden" name="Hobby" value="<?=$_POST["Hobby"]?>" />
<input type="hidden" name="HobbyOther" value="<?=$_POST["HobbyOther"]?>" />
<input type="hidden" name="HobOther" value="<?=$_POST["HobOther"]?>" />
<br />
<?
$sql ="INSERT INTO activitiesdata (Id) VALUES( '".$Id."')";
$result = mysql_query($sql);
if($submit=="หน้าถัดไป" && $Id != null )
{
if ($Activities)
{
$Sent_Ac = implode($Activities, ",");
$result = mysql_query ("UPDATE activitiesdata SET ActivitiesId = '".$Sent_Ac."' WHERE Id ='".$Id."'");
if(!$result)
{
echo "<B>UPDATE activitiesdata unsuccessful:</b> ", mysql_error();
}
}
if($Theother!=""){
$result_Theother=mysql_query("UPDATE activitiesdata SET Other='".$Theother."'WHERE Id='".$Id."' ");
}
else {
$result_Theother=mysql_query("UPDATE activitiesdata SET Other=' ' WHERE Id='".$Id."' ");
}
}
?>
<?
$sql ="INSERT INTO homeworkdata (Id) VALUES ('".$Id."')";
$result = mysql_query($sql);
if($submit=="หน้าถัดไป" && $Id != null)
{
if($Homework){
$Sent_HW = implode($Homework,",");
$result = mysql_query("UPDATE homeworkdata SET ActivitiesId ='".$Sent_HW."' WHERE Id = '".$Id."' ");
if(!$result)
{
echo"<B>UPDATE homeworkdata unsuccessful:</B>",mysql_error();
}
}
if($HomeOther!=""){
$result_Theother=mysql_query("UPDATE homeworkdata SET Other='".$HomeOther."'WHERE Id='".$Id."' ");
}
else {
$result_Theother=mysql_query("UPDATE homeworkdata SET Other=' ' WHERE Id='".$Id."' ");
}
}
?>
<?
$sql="INSERT INTO hobbydata (Id) VALUES ('".$Id."')";
$result=mysql_query($sql);
if($submit=="หน้าถัดไป" && $Id != null)
{
if($Hobby)
{
$Sent_HB = implode($Hobby,",");
$result = mysql_query("UPDATE hobbydata SET ActivitiesId = '".$Sent_HB."' WHERE Id='".$Id."'");
if(!$result)
{
echo"<B>UPDATE hobbydata unsuccessful:</B>", mysql_error();
}
}
if($HobOther!=""){
$result_Theother=mysql_query("UPDATE hobbydata SET Other='".$HobOther."'WHERE Id='".$Id."' ");
}
else {
$result_Theother=mysql_query("UPDATE hobbydata SET Other=' ' WHERE Id='".$Id."' ");
}
}
?>
<br />
<div align="center">
<input type="button" value="ย้อนกลับ" onClick="history.go(-1)">
<input name="submit" type ="submit" value="หน้าถัดไป" />
</div>
</form>
</td>
</tr>
</table>
<td width="5"> </td>
</tr>
<tr>
<td width="48"> </td>
<td width="334"> </td>
<td width="600"> </td>
<td width="5"> </td>
</tr>
</table>
</body>
</html>
?>
โค๊ดStudy
Code (PHP)
<?
session_start();
header("Cache-control: private");
error_reporting(0);
echo rand(1,1000);
include("startconnect.php");
extract($_POST);
extract($_GET);
extract($_REQUEST);
?>
<form name="Study" method="post" action="Parent.php" align="center" >
<? //ตรวจสอบว่าเลือกค่าผิดมั๊ย
if ($Disease)
{
$Sent_Di = implode($Disease, ",");
if($Sent_Di =="100,101,102,103,104,105" or $Sent_Di == "100,101" or $Sent_Di == "100,102"
or $Sent_Di == "100,103" or $Sent_Di == "100,104" or $Sent_Di == "100,105"
or $Sent_Di == "100,101,102" or $Sent_Di == "100,101,102,103" or $Sent_Di == "100,101,102,103,104" or $Sent_Di == "100,101,102,103,104,105" or $Sent_Di == "100,101,103" or $Sent_Di == "100,101,104" or $Sent_Di == "100,101,1004,105" or $Sent_Di == "100,101,104" or $Sent_Di == "100,101,104,105"
or $Sent_Di == "100,101,105" or $Sent_Di == "100,102,103,104,105" or $Sent_Di =="100,102,104,105" or $Sent_Di == "100,102,105" or $Sent_Di == "100,103,104,105 "or $Sent_Di == "100,103,105"
or $Sent_Di == "100,104,105" or $Sent_Di == "100,105")
{ ?>
<script language="javascript" >
alert("ข้อมูลโรคประจำตัวผิดพลาดค่ะ");
history.back();
</script>
<?
}
}
if($Disease == ""){ ?>
<script language="JavaScript">
alert("กรุณาเลือกลักษณะข้อมูลโรคประจำตัวค่ะ");
history.back();
</script>
<? }
?>
<!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">
<!-- DW6 -->
<head>
<!-- Copyright 2005 Macromedia, Inc. All rights reserved. -->
<title>ข้อมูลด้านการศึกษา</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874" />
<link rel="stylesheet" href="mm_health_nutr.css" type="text/css" />
<script language="JavaScript" type="text/javascript">
//--------------- LOCALIZEABLE GLOBALS ---------------
var d=new Date();
var monthname=new Array("January","February","March","April","May","June","July","August","September","October","November","December");
//Ensure correct for language. English is "January 1, 2004"
var TODAY = monthname[d.getMonth()] + " " + d.getDate() + ", " + d.getFullYear();
//--------------- END LOCALIZEABLE ---------------
</script>
<style type="text/css">
<!--
body,td,th {
font-family: Tahoma;
}
-->
</style></head>
<body bgcolor="#F4FFE4">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr bgcolor="#D5EDB3">
<td colspan="2" rowspan="2"><img src="mm_health_photo.jpg" alt="Header image" width="382" height="101" border="0" /></td>
<td width="570" height="50" id="logo" valign="bottom" align="center" nowrap="nowrap">insert website name</td>
<td width="26"> </td>
</tr>
<tr bgcolor="#D5EDB3">
<td height="51" id="tagline" valign="top" align="center">OPTIONAL TAGLINE HERE</td>
<td width="26"> </td>
</tr>
<tr>
<td colspan="4" bgcolor="#5C743D"><img src="mm_spacer.gif" alt="" width="1" height="2" border="0" /></td>
</tr>
<tr>
<td colspan="4" bgcolor="#99CC66" background="mm_dashed_line.gif"><img src="mm_dashed_line.gif" alt="line decor" width="4" height="3" border="0" /></td>
</tr>
<tr bgcolor="#99CC66">
<td> </td>
<td colspan="3" id="dateformat" height="20"><a href="Home.php">HOME</a> :: <script language="JavaScript" type="text/javascript">
document.write(TODAY); </script> </td>
</tr>
<tr>
<td colspan="4" bgcolor="#99CC66" background="mm_dashed_line.gif"><img src="mm_dashed_line.gif" alt="line decor" width="4" height="3" border="0" /></td>
</tr>
<tr>
<td colspan="4" bgcolor="#5C743D"><img src="mm_spacer.gif" alt="" width="1" height="2" border="0" /></td>
</tr>
<tr>
<td width="40"> </td>
<td colspan="2" valign="top"> <br />
<br />
<table border="0" cellspacing="0" cellpadding="2" width="912">
<tr>
<td width="908" class="pageName">แฟ้มข้อมูลประวัติเด็กใหม่</td>
</tr>
<tr>
<td class="bodyText">
<p>ท่านกำลังบันทึกข้อมูลด้านสุขภาพของ
<? echo $_POST["Title"] ; ?><? echo $_POST["Fullname"] ; ?> TH-905<? echo trim($_POST["Id"]) ; ?></p>
<p align="center">กรณีศึกษาประวัติเด็กใหม่<br />
<font color ="#FF6600">*กรุณากรอกข้อมูลให้ครบถ้วน</font> </p>
<br />
<?
// แสดงรูปภาพที่อัพโหลด
$Id = $_POST["Id"];
$query_picger ="select * FROM backgroundandpersonal WHERE Id='$Id'";
$picger_db = mysql_query($query_picger) or die(mysql_error());
$row_picgerst = mysql_fetch_assoc($picger_db);
$Fullname = $row_picgerst[Fullname];
$Image = $row_picgerst['Image'];
?>
<div align="center"><img src="<? echo $Image ;?>" width="115" height="115"></div><br>
<table width="80%" border="0" bordercolor="#9999FF" bgcolor="#9999FF" align="center">
<tr>
<td>
<div><font color="#FFFFFF"> การศึกษา</font></div></td>
</tr>
</table>
<table width ="80%" border="0" align="center">
<tr>
<td width="38%">เด็กคนนี้กำลังเรียนหนังสืออยู่ใช่หรือไม่<span class="style1"> </span></td>
<td width="16%"><input type ="radio" name="Now_St" id="Yes" value="ใช่" checked class ="text" />ใช่</td>
<td width="46%"><input type ="radio" name="Now_St" id ="No" value="ไม่ใช่" checked class="text" />ไม่ใช่</td>
<span class="style1"><br />
</span>
</table>
<table width ="80%" border="0" align="center">
<tr>
<td width="38%">หากไม่ได้เรียนหนังสือโปรดให้เหตุผล</td>
<td width="62%"><span class="style1">
<input type ="Text" name="Reason" value="" />
</span> </td>
</tr>
</table>
<table width ="80%" border="0"align="center">
<tr>
<td width="38%">ระดับชั้นเรียนในประเทศไทย <span class="style1"> </span></td>
<td width="62%"><span class="style1">
<input type="text" name="Inthai" value="" />
</span> </td>
</tr>
</table>
<table width ="80%" border="0"align="center">
<tr>
<td width="38%">สาขา/แผนกที่เรียน</td>
<td width="62%">
<input type ="text" name="Theother" value="" />
<font color="#FF6600">*ในกรณีที่เรียนในระดับชั้นวิชาชีพ/มหาวิทยาลัย/ฝึกอบรมพิเศษ</font>
</td>
</tr>
</table>
<table width ="80%" border="0"align="center">
<tr>
<td width="38%">ระดับชั้นเรียนเทียบกับอเมริกา</td>
<td width="20%"><input type="radio" name="InAmerica" id="In1" value="ก่อนวัยเรียน" checked="checked" class="text" />ก่อนวัยเรียน</td>
<td width="19%"><input type = "radio" name="InAmerica" id="In2" value="อ.1" checked="checked" class="text" />อนุบาล1</td>
<td width="23%"><input type = "radio" name="InAmerica" id="In3" value="อ.2" checked="checked" class="text" />อนุบาล2</td>
</tr>
<tr>
<td width="38%"></td>
<td width="20%"><input type = "radio" name="InAmerica" id="In4" value="อ.3" checked="checked" class="text" />อนุบาล3</td>
<td width="19%"><input type = "radio" name="InAmerica" id="In5" value="ป.1" checked="checked" class="text" />ประถมศึกษาปีที่1</td>
<td width="23%"><input type = "radio" name="InAmerica" id="In6" value="ป.2" checked="checked" class="text" />ประถมศึกษาปีที่2</td>
</tr>
<tr>
<td width="38%"></td>
<td width="20%"><input type = "radio" name="InAmerica" id="In6" value="ป.3" checked="checked" class="text" />ประถมศึกษาปีที่3</td>
<td width="19%"><input type = "radio" name="InAmerica" id="In7" value="ป.4" checked="checked" class="text">ประถมศึกษาปีที่4</td>
<td width="23%"><input type = "radio" name="InAmerica" id="In8" value="ป.5" checked="checked" class="text">ประถมศึกษาปีที่5</td></tr>
<tr>
<td width="38%"></td>
<td width="20%">
<input type = "radio" name="InAmerica" id="In9" value="ป.6" checked="checked" class="text">ประถมศึกษาปีที่6</td>
<td width="19%">
<input type = "radio" name="InAmerica" id="In10" value="มหาวิทยาลัย" checked="checked" class="text">มหาวิทยาลัย </td>
<td width="23%"><span class="style1"><br />
</span> </td>
</tr>
</table>
<br>
<table width ="80%" border="0"align="center">
<tr>
<td width="38%">ระดับผลการเรียน</td>
<td width="62%">
<input type = "radio" name="Grade" id="L" value="ตำ่กว่าเกณฑ์" checked="checked" class="text" />
ต่ำกว่าเกณฑ์
<input type = "radio" name="Grade" id="M" value="ปานกลาง" checked="checked" class="text" />
ปานกลาง
<input type = "radio" name="Grade" id="H" value="สูงกว่าเกณฑ์" checked="checked" class="text" />
สูงกว่าเกณฑ์<br /> </td>
</tr>
</table>
<table width ="80%" border="0"align="center">
<tr>
<td width="38%">วิชาที่ฉนัด<font color="#FF6600">(สำหรับชั้นป.2ขึ้นไปเท่านั้น) </font></td>
<td width="62%"><input type ="text" name="Excellent" value ="" >
<font color="#FF6600">*ระบุเพียงวิชาเดียว</font></td>
</tr>
</table>
<table width ="80%" border="0"align="center">
<tr>
<td width="38%">แผนการเรียนในอนาคต<font color="#FF6600">(สำหรับชั้นมัธยมขึ้นไป)</font></td>
<td width="16%">
<input type ="radio" name ="Future" id="S" value ="มัธยมปลาย" checked class ="text">มัธยมปลาย</td>
<td width="21%">
<input type ="radio" name ="Future" id="U" value ="มหาวิทยาลัย" checked class="text">วิทยาลัย/มหาวิทยาลัย</td>
<td width="25%">
<input type ="radio" name ="Future" id="B" value ="โรงเรียนพระคริสตธรรม" checked class ="text">โรงเรียนพระคริสตธรรม</td>
</tr>
<tr>
<td width="38%"></td>
<td width="16%">
<input type ="radio" name ="Future" id="O" value ="โรงเรียนสายอาชีพ" checked class ="text">โรงเรียนสายอาชีพ</td>
<td width ="21%">
<input type ="radio" name ="Future" id="Other" value ="อื่น ๆ" checked class ="text"> อื่นๆ</td>
<td width="25%">
<input type ="radio" name ="Future" id="No" value ="ไม่ถึงเกณฑ์" checked class="text">ยังไม่เรียนมัธยม</td>
</tr>
</table>
<table width ="80%" border="0"align="center">
<tr>
<td width="38%">วันเดือนปีที่คาดหวัง</td>
<td width="62%">วัน
<select name="Day2">
<?php
for ($d =1; $d<=31 ; $d++ )
{
?>
<option value="<?php echo $d?> "><?php echo $d?></option>
<?php } ?>
</select>
เดือน <select name="Month2">
<?php
for ($m=1; $m<=12 ; $m++ )
{
?>
<option value="<?php echo $m?>">
<?php
switch ($m){
case 1: echo "มกราคม"; break;
case 2: echo "กุมภาพันธ์"; break;
case 3: echo "มีนาคม"; break;
case 4: echo "เมษายน"; break;
case 5: echo "พฤษภาคม"; break;
case 6: echo "มิถุนายน"; break;
case 7: echo "กรกฎาคม"; break;
case 8: echo "สิงหาคม"; break;
case 9: echo "กันยายน"; break;
case 10: echo "ตุลาคม"; break;
case 11: echo "พฤศจิกายน"; break;
case 12: echo "ธันวาคม"; break;
}
?>
</option>
<?php } ?>
</select>
พ.ศ.
<input type ="Text" name="Year2" size="4"></td>
</tr>
<tr>
<td width="38%" border="0">สาขา/แผนกที่จะเรียน</td>
<td width="62%" border="0"><input type ="text" name="Field" value=""></td>
</tr>
</table>
<table width="80%" align="center"><tr><td>
<INPUT TYPE="hidden" NAME="Id" value="<?=$_POST["Id"]?>">
<INPUT TYPE="hidden" NAME="Title" value="<?=$_POST["Title"]?>">
<INPUT TYPE="hidden" NAME="Fullname" value="<?=$_POST["Fullname"]?>">
<INPUT TYPE="hidden" NAME="Nickname" value="<?=$_POST["Nickname"]?>">
<INPUT TYPE="hidden" NAME="Day" value="<?=$_POST["Day"]?>">
<INPUT TYPE="hidden" NAME="Month" value="<?=$_POST["Month"]?>">
<INPUT TYPE="hidden" NAME="Year" value="<?=$_POST["Year"]?>">
<INPUT TYPE="hidden" NAME="Gender" value="<?=$_POST["Gender"]?>">
<?
$Disease =$_POST['Disease'];
$DiseaseOther =$_POST["DiseaseOther"];
$DiseaseTheOther =$_POST["DiseaseTheOther"];
$Backbone =$_POST["Backbone"];
$leftfoot =$_POST["leftfoot"];
$Rightfoot =$_POST["Rightfoot"];
$lefthand =$_POST["lefthand"];
$Righthand =$_POST["Righthand"];
$leftleg =$_POST["leftleg"];
$Rightleg =$_POST["Rightleg"];
$Speak =$_POST["Speak"];
$Leftear =$_POST["Leftear"];
$Rightear =$_POST["Rightear"];
$Lefteye =$_POST["Lefteye"];
$Righteye =$_POST["Righteye"];
$Cure =$_POST["Cure"];
$Eat =$_POST["Eat"];
?>
<?
$Id = $_POST["Id"];
$sql ="INSERT INTO congenitaldiseasedata (Id) VALUES( '".$Id."')";
$result = mysql_query($sql);
if($submit=="หน้าถัดไป" && $_POST['Id'] != null)
{
if ($Disease)
{ echo $Disease;
$Sent_Di = implode($Disease, ","); echo $Sent_Di ;
$result = mysql_query ("UPDATE congenitaldiseasedata SET DiseaseId = '".$Sent_Di."' WHERE Id ='".$Id."' ");
if(!$result)
{
echo "<B>UPDATE congenitaldiseasedata unsuccessful:</b> ", mysql_error();
}
}
if($DiseaseTheOther!=""){
$result_Theother=mysql_query("UPDATE congenitaldiseasedata SET Other='".$DiseaseTheOther."'WHERE Id='".$Id."' ");
}
else {
$result_Theother=mysql_query("UPDATE congenitaldiseasedata SET Other =' ' WHERE Id='".$Id."' ");
}
}
?>
<?
if($submit=="หน้าถัดไป" && $_POST['Id'] != null)
{
if($result){
$sql = "insert into deformationdata (Id,DeformationId,Symptoms)values('".$Id."','200','".$Backbone."')";
$result = mysql_query($sql);
}
if($result){
$sql = "insert into deformationdata (Id,DeformationId,Symptoms)values('".$Id."','201','".$leftfoot."')";
$result = mysql_query($sql);
}
if($result){
$sql = "insert into deformationdata (Id,DeformationId,Symptoms)values('".$Id."','202','".$Rightfoot."')";
$result = mysql_query($sql);
}
if($result){
$sql = "insert into deformationdata (Id,DeformationId,Symptoms)values('".$Id."','203','".$lefthand."')";
$result = mysql_query($sql);
}
if($result){
$sql = "insert into deformationdata (Id,DeformationId,Symptoms)values('".$Id."','204','".$Righthand."')";
$result = mysql_query($sql);
}
if($result){
$sql = "insert into deformationdata (Id,DeformationId,Symptoms)values('".$Id."','205','".$leftleg."')";
$result = mysql_query($sql);
}
if($result){
$sql = "insert into deformationdata (Id,DeformationId,Symptoms)values('".$Id."','206','".$Rightleg."')";
$result = mysql_query($sql);
}
if($result){
$sql = "insert into deformationdata (Id,DeformationId,Symptoms)values('".$Id."','207','".$leftarm."')";
$result = mysql_query($sql);
}
if($result){
$sql = "insert into deformationdata (Id,DeformationId,Symptoms)values('".$Id."','208','".$Rightarm."')";
$result = mysql_query($sql);
}
if($result){
$sql = "insert into deformationdata (Id,DeformationId,Symptoms)values('".$Id."','209','".$Speak."')";
$result = mysql_query($sql);
}
if($result){
$sql = "insert into deformationdata (Id,DeformationId,Symptoms)values('".$Id."','210','".$Leftear."')";
$result = mysql_query($sql);
}
if($result){
$sql = "insert into deformationdata (Id,DeformationId,Symptoms)values('".$Id."','211','".$Rightear."')";
$result = mysql_query($sql);
}
if($result){
$sql = "insert into deformationdata (Id,DeformationId,Symptoms)values('".$Id."','212','".$Lefteye."')";
$result = mysql_query($sql);
}
if($result){
$sql = "insert into deformationdata (Id,DeformationId,Symptoms)values('".$Id."','213','".$Rightear."')";
$result = mysql_query($sql);
}
if($result){
$sql = "insert into healthrecords (Id,Cure,Eat)values('".$Id."','".$Cure."','".$Eat."')";
$result = mysql_query($sql);
}
}
?>
<div align="center">
<input type="button" value="ย้อนกลับ" onClick="history.go(-1)">
<input name="submit" type ="submit" value="หน้าถัดไป" />
</div>
<br>
</td>
</tr>
</table>
</form> </td>
</tr>
</table>
</td>
<td width="26"> </td>
</tr>
<tr>
<td width="40"> </td>
<td width="342"> </td>
<td width="570"> </td>
<td width="26"> </td>
</tr>
</table>
</body>
</html>
Tag : - - - -
|
|
|
|
|
|
Date :
2009-08-28 15:01:31 |
By :
Fah_IL mare |
View :
1001 |
Reply :
0 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|