|
|
|
ต้องการสมัครทุน โดยถ้าเราสมัครทุนนั้นไปแล้ว จะไม่สมารถสมัครได้อีก และถ้าเกรดไม่ถึงตามเกณที่กำหนดก็ไม่สามารถสมัครได้ จะเขียนดักอย่างไรค่ะ |
|
|
|
|
|
|
|
ต้องการสมัครทุน โดยถ้าเราสมัครทุนนั้นไปแล้ว จะไม่สมารถสมัครได้อีก และถ้าเกรดไม่ถึงตามเกณที่กำหนดก็ไม่สามารถสมัครทุนนั้นได้ จะเขียนดักอย่างไรค่ะ พยายามเขียนแล้วแต่ทำไม่ได้สักทีค่ะ ช่วยเขียนโค้ดดักให้ทีนะค่ะ
ฟอร์มสมัครค่ะ
Code
<table width="720" height="407" border="0" cellpadding="0" cellspacing="0" >
<tr>
<td height="20" > </td>
</tr>
<tr>
<td valign="top" align="center"> <form name="form1" width="600" method="post" action="save_app.php" align="center" id = "stylized1">
<table width="700" border="0" align="center">
<tr>
<td height="36" colspan="9" align="left" class="label" id> <span class="font">สมัครทุนการศึกษา
<input type="hidden" size="20" name="Stu_id" value="<?=$objResult["Stu_id"];?>" readonly="readonly" />
<input type="hidden" size="20" name="Stu_gpa" value="<?=$objResult["Stu_gpa"];?>" readonly="readonly" />
</span></td>
</tr>
<tr>
<td height="17" colspan="7" id class="label"><hr></td>
</tr>
<tr>
<?
include('connect.php');
$strSQL = "SELECT * FROM scholarship WHERE Sch_id = '".$_GET["Sch_id"]."' ";
$objQuery = mysql_query($strSQL);
$objResult = mysql_fetch_array($objQuery);
// $images = mysql_fetch_array($result);
if(!$objResult)
{
echo "Not found Sch_id=".$_GET["Sch_id"];
}
else
{
?>
<td width="153" height="25" align="left" bgcolor="#FFFFCC">ปีการศึกษา :</td>
<td width="537" height="25" align="left">
<input type="hidden" name="Sch_id" value="<?=$objResult["Sch_id"];?>">
<input type="hidden" name="App_day" size="15" value="<? echo date("d/m/Y");?>" readonly="readonly" />
<input name="Sch_year" type="text" value="<?=$objResult["Sch_year"];?>" readonly="readonly" />
<span class="label">
<input type="hidden" value="<?=$objResult['Sch_gpa'];?>" />
</span></td>
</tr>
<tr>
<td height="25" align="left" bgcolor="#FFFFCC">ภาคเรียน :</td>
<td height="25" align="left"><input name="Sch_term" type="text" value="<?=$objResult["Sch_term"];?>" size="15" readonly="readonly" /></td>
</tr>
<tr>
<td height="25" align="left" bgcolor="#FFFFCC">ชื่อทุน :</td>
<td height="25" align="left"><input name="Sch_name" type="text" value="<?=$objResult["Sch_name"];?>" size="70" readonly="readonly" /></td>
</tr>
<tr>
<td height="25" align="left" bgcolor="#FFFFCC">จำนวนทุน :</td>
<td height="25" align="left"><input name="Sch_amo" type="text" value="<?=$objResult["Sch_amo"];?>" size="15" readonly="readonly" /></td>
</tr>
<tr>
<td height="25" align="left" bgcolor="#FFFFCC">จำนวนเงินทุนละ :</td>
<td height="25" align="left"><input name="Sch_mon" type="text" value="<?=$objResult["Sch_mon"];?>" readonly="readonly" /></td>
</tr>
<tr>
<td height="25" colspan="3" align="center" bgcolor="#CCFF99" class="font1">คุณต้องการที่จะสมัครทุนนี้หรือไม่ ?</td>
</tr>
<tr>
<td height="40" colspan="3"><hr></td>
</tr>
<tr>
<td colspan="3"><table width="659" border="0">
<tr>
<td align="right"><input type="submit" name="submit" value="ตกลง" ></td>
<td align="left"><input type="button" name="Cancel" value="ยกเลิก" onClick="window.location = 'user_page.php' " /></td>
</tr>
</table>
</td>
</tr>
</table>
</form><?
}
// mysql_close($objConnect);
?></td>
</tr>
</table>
โค้ดบันทึก
Code
<!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>
<script language="JavaScript">
parent.frames['menu'].location.reload();
</script>
</head>
<body>
<?
include('connect.php');
$strSQL = "SELECT * FROM sch_apply ";
$objQuery = mysql_query($strSQL);
$objResult = mysql_fetch_array($objQuery);
if($_POST['submit'])
{
$Stu_gpa =$_POST["Stu_gpa"];
$Sch_gpa =$_POST["Sch_gpa"];
if($Stu_gpa < $Sch_gpa)
{
echo "<script>alert(' เกรดเฉลี่ยของคุณต่ำกว่าเกณฑ์ที่กำหนดกรุณาลองอีกครั้ง');window.location='user_add_app.php';</script>";
exit();
}
else
{
$strSQL = "INSERT INTO sch_apply (Sch_id, Sch_name, Sch_mon, Sch_year, Sch_term, Stu_id, App_day)
VALUE(
'".$_POST["Sch_id"]."',
'".$_POST["Sch_name"]."',
'".$_POST["Sch_mon"]."',
'".$_POST["Sch_year"]."',
'".$_POST["Sch_term"]."',
'".$_POST["Stu_id"]."',
'".$_POST["App_day"]."' )";
mysql_query($strSQL);
echo "<script>alert(' สมัครทุนเรียบร้อยแล้ว ');window.location='user_page.php';</script>";
}
}
mysql_close();
?>
</body>
</html>
Tag : PHP, MySQL
|
ประวัติการแก้ไข 2013-07-18 00:48:31
|
|
|
|
|
Date :
2013-07-18 00:47:11 |
By :
lookmeeit |
View :
666 |
Reply :
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอเป็นโค้ดได้มั้ยค่ะ พยายามเขียนแล้วค่ะแต่เขียนไม่ถูกจิงๆค่ะ ช่วยทีนะค่ะ
|
|
|
|
|
Date :
2013-07-18 01:38:28 |
By :
lookmeeit |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากเลยค่ะ ทำได้แล้ว
|
|
|
|
|
Date :
2013-07-18 11:09:47 |
By :
lookmeeit |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2013-07-18 14:21:08 |
By :
{Cyberman} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
จัดไป
|
|
|
|
|
Date :
2013-07-18 14:36:09 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|