|
|
|
รบกวนช่วยหน่อยครับ จะส่งแล้วทำไม่ได้จริง ๆ ติดตัวสุดท้ายแล้วก่อนส่ง |
|
|
|
|
|
|
|
ผมไม่รู้จะเขียนยังไงครับ ต้องการคลิกเลือกการขาดเรียน หนีเรียน สาย แล้วบันทึกลงฐานข้อมูลโดยที่ในฐานข้อมูลจะบวกค่าไปทีละ 1 ถ้าเกิดการเช็คของแต่ละช่อง
++++ add_hr_point.php +++++
Code (PHP)
<?php session_start();
include('includes/connect_db.php');
?>
<!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>Untitled Document</title>
</head>
<body>
<p>
<?php
$tid = $_SESSION['login'];
$sql = "select * from teacher where teacher = '$tid'";
$result = mysql_query($sql) or die ("<script>alert('Error!');history.back();</script>");
$array = mysql_fetch_array($result);
$teacher = $array['Teacher'];
$tname = $array['Tname'];
$tsname = $array['Tsname'];
$class = $array['class'];
$room = $array['room']
?>
</p>
<p align="center" class="style7"> </p>
<form id="form2" name="form2" method="post" action="subject/add_hr_check.php">
<table width="597" class="outter">
<tr>
<td width="585"><table class="text" border="0" cellpadding="4" cellspacing="3" width="100%">
<tr height="40px">
<td colspan="4" class="formHeading">บันทึกการหักคะแนนรายวิชา Home Room</td>
</tr>
<tr>
<td colspan="4" class="note" bgcolor="#E0F0E8"> ข้อมูลอาจารย์ประจำชั้น <? echo ($class); ?>/<? echo ($room); ?></td>
</tr>
<tr height="10px">
<td colspan="4"></td>
</tr>
<tr>
<td align="right" bgcolor="#E0F0E8" width="24%">รหัสอาจารย์ประจำชั้น</td>
<td colspan="3"><? echo $teacher;?><input name="teacher" type="hidden" value="<? echo $teacher;?>" /></td>
</tr>
<tr>
<td align="right" bgcolor="#E0F0E8">ชื่ออาจารย์ประจำชั้น</td>
<td colspan="3"><? echo $tname;?> <? echo $tsname; ?>
<input type="hidden" name="gname" value="<? echo $tname;?>"/></td>
</tr>
<tr>
<td ></td>
<td colspan="3"> </td>
</tr>
<tr>
<td colspan="4" class="note" bgcolor="#E0F0E8"> ข้อมูลวิชา</td>
</tr>
<tr>
<td align="right" bgcolor="#E0F0E8">วันที่</td>
<td><input type="text" name="date_check" id="date_check" /></td>
<td bgcolor="#E0F0E8">คาบที่</td>
<td><input type="text" name="hour" id="hour" /></td>
</tr>
<tr>
<td align="right" bgcolor="#E0F0E8">ภาคเรียนที่</td>
<td width="24%"><input type="text" name="Term" id="Term" /></td>
<td width="15%" bgcolor="#E0F0E8" >ปีที่</td>
<td width="37%"><input type="text" name="Year" id="Year" /></td>
</tr>
<tr>
<td colspan="4" align="right" bgcolor="#E0F0E8">
<div align="center">
<input type="hidden" name="Full" id="Full" value="FULL" />
<input type="checkbox" name="checkfull" id="checkfull " value="OK" />
Check Full
</div></td>
</tr>
</table>
<div align="center"></div></td></tr>
</table>
<span id=cust style="position:relative;"></span><br/>
<center>
</center>
<br/>
<p>
<table id="myTable" width="597" class="outter">
<tr>
<td width="585"><table width="100%" border="0" cellpadding="4" cellspacing="3" bordercolor="#00CC99" class="text">
<tr>
<td class="note" bgcolor="#E0F0E8" width="10%"><div align="center">รหัสนักเรียน</div></td>
<td class="note" bgcolor="#E0F0E8" width="20%"><div align="center">ชื่อสกุลนักเรียน</div></td>
<td class="note" bgcolor="#E0F0E8" width="10%"><div align="center">ห้อง</div></td>
<td class="note" bgcolor="#E0F0E8" width="10%"><div align="center">ขาด</div></td>
<td class="note" bgcolor="#E0F0E8" width="10%"><div align="center">สาย</div></td>
<td class="note" bgcolor="#E0F0E8" width="10%"><div align="center">หนี</div></td>
<td class="note" bgcolor="#E0F0E8" width="10%"><div align="center">แต่งกาย</div></td>
<td class="note" bgcolor="#E0F0E8" width="10%"><div align="center"><p>ลบ
<input name="CheckAll" type="checkbox" id="CheckAll" value="Y" onClick="checkAllBox(this);">
</p></div></td>
</tr>
<?php
$sql1 = "select * from student where Sgrade = '$class' order by SID";
$result1 = mysql_query($sql1) or die ("<script>alert('error');history.back();</script>");
$row = mysql_num_rows($result1);
$i =1;
while($array1=mysql_fetch_array($result1))
{
?>
<tr>
<td align="center"><?php echo $array1['SID'];?> </td>
<td><?php echo $array1['Sname'];?> <?php echo $array1['Ssname'];?> </td>
<td align="center"><?php echo $array1['Sgrade'];?>/<?php echo $array1['Room'];?></td>
<td align="center"><div align="center"><input type="checkbox" name="Chk1[]" id="Chk1[]" value="<?php echo $array1['SID'];?>" />
</div></td>
<td align="center"><div align="center"><input type="checkbox" name="Chk2[]" id="Chk2[]" value="<?php echo $array1['SID'];?>" />
</div></td>
<td align="center"><div align="center"><input type="checkbox" name="Chk3[]" id="Chk3[]" value="<?php echo $array1['SID'];?>" />
</div></td>
<td align="center"><div align="center"><input type="checkbox" name="Chk4[]" id="Chk4[]" value="<?php echo $array1['SID'];?>" />
</div></td>
<td align="center"><div align="center"><input type="checkbox" name="Chk5[]" id="Chk5[]" value="<?php echo $array1['SID'];?>" />
</div></td><? $i++ ?>
</tr>
<?php
}
?>
<input type="hidden" name="gid" value="<?php echo $gid?>">
<tr height="10px">
<td colspan="6"></td>
</tr>
</table>
<div align="center">
<p>
<input type="submit" name="Submit" value="บันทึก" />
</p>
<p> </p>
</div></td></tr>
</table>
<p> </p>
<p>
<center>
</center>
</p>
</form> </p>
</body>
</html>
++++++++add_hr_check.php+++++++++++
Code (PHP)
<?php
session_start();
?>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<?php
include("../includes/connect_db.php");
$teacher = $_POST['teacher'];
$date_check = $_POST['date_check'];
$Term = $_POST['Term'];
$Year = $_POST['Year'];
$hour = $_POST['hour'];
$checkfull = $_POST['checkfull'];
$sid = $_POST['SID'];
$ah = $_POST['Chk1'];
$lh = $_POST['Chk2'];
$th = $_POST['Chk3'];
$uh = $_POST['Chk4'];
$count="select * from adviser_point "
$result2 = mysql_query($count);
for($i=0;$i<count($sid);$i++){
}
if($checkfull == "OK"){
$sql = "insert into adviser_point (Year,Term,Date_check,Teacher,HR_Full,hour) values ('$Year','$Term','$date_check','$teacher','FULL','$hour')";
$result = mysql_query($sql);
echo ($sql);
echo "<script>alert('บันทึกมาเรียนเต็มเรียบร้อย');history.back();</script>";
}
else{
$sql1 = "insert into adviser_point (Year,Term,Date_check,Teacher,hour,AH) values ('$Year','$Term','$date_check','$teacher','$hour','$ah1') ";
$result1 = mysql_query($sql1);
echo($sql1);
}
echo "<script>alert('[บันทึกข้อมูลเรียบร้อย');history.back();</script>";
?>
Tag : PHP
|
ประวัติการแก้ไข 2012-01-03 13:45:09 2012-01-03 13:46:18
|
|
|
|
|
Date :
2012-01-03 11:58:34 |
By :
ohm_namo |
View :
875 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถามมาแบบนี้ก็ลำบากใจอยู่นะครับ เพราะไม่มีใครสามารถ copy script ทั้งหมดไป run ในเครื่องเพื่อทดสอบให้ได้หรอกครับ.... (เพราะไม่ทราบโครงสร้างฐานข้อมูลเลย)....
ถ้าจะถามว่าทำอย่างไร ขอให้ระบุถึงสิ่งที่มันเป็นปัญหาให้ชัดเจนดีกว่าครับ เช่น มันเกิด error ตรงไหน ข้อความ error ว่าอย่างไร ยังไงก็เป็นโปรเจ็คที่ต้องสร้างแล้วก็ present ให้อาจารย์ดูอยู่แล้วนี่ครับ เพราะฉะนั้นคุณก็ต้องทำความเข้าใจ code แต่ละบันทัดเพื่อเอาไปตอบคำถามของอาจารย์ให้ได้ด้วย ... แล้วถ้าเป็นผมนะ ผมจะเดินเข้าไปหาอาจารย์แล้วก็ขอคำปรึกษาครับ.....(หลังจากที่พยายามแล้วจากการค้นคว้าด้วยตนเอง)
|
|
|
|
|
Date :
2012-01-03 16:08:51 |
By :
Songkram |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|