|
|
|
ช่วยแก้ที ครับ โปรแกรม คิดเกรด ติดตรงที่ มันมี output แทรกมาหน้าฟอร์มก่อนกรอกเกรด |
|
|
|
|
|
|
|
ลองดูนะ ยังไม่ได้ลองรันน่ะ
Code (PHP)
<form id="form1" name="form1" method="get" action="?action=show">
คะแนน :
<input type="text" name="x" id="x" />
<p>
<input type="submit" name="button" id="button" value="Submit" />
<input type="reset" name="button2" id="button2" value="Reset" />
</p>
</form>
<?php
if($_GET['action']='show'){
$x = $_GET[x];
if($x>80) {$dis = "a";
echo "เกรด " ,$dis;}
else if ($x>70) {$dis = "b";
echo "เกรด ",$dis;}
else if ($x>60) {$dis = "c";
echo "เกรด ",$dis;}
else if ($x>=50) {$dis = "d";
echo "เกรด ",$dis;}
else if ($a<50) {$dis = "f";
echo "เกรด ",$dis;}
}
?>
|
|
|
|
|
Date :
2012-12-14 16:30:00 |
By :
บังเอิญผ่านมาเห็น |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<form id="form1" name="form1" method="get" action="?action=show">
คะแนน :
<input type="text" name="x" id="x" />
<p>
<input type="submit" name="button" id="button" value="Submit" />
<input type="reset" name="button2" id="button2" value="Reset" />
</p>
</form>
<?php
if($_GET['action']='show'){
$x = $_GET[x];
if($x>80) {$dis = "a";
$grade = "เกรด " ,$dis;
}
else if ($x>70) {$dis = "b";
$grade ="เกรด ",$dis;}
else if ($x>60) {$dis = "c";
$grade ="เกรด ",$dis;}
else if ($x>=50) {$dis = "d";
$grade ="เกรด ",$dis;}
else if ($a<50) {$dis = "f";
$grade ="เกรด ",$dis;}
}
echo $grade;
?>
|
|
|
|
|
Date :
2012-12-14 17:40:51 |
By :
Dragons_first |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|