標題:
13-3-7 進階研究
[打印本頁]
作者:
小誌
時間:
2011-4-24 15:34
標題:
13-3-7 進階研究
13-3-7 進階研究
如果要讓受測者(學生)只能參加ㄧ次考試,那我們該如何處理?首先,把評分及公佈成績的『grad.php』網頁中的「[再考ㄧ次]」連結取消,這樣平分後就無法連結再考試:
grad.htm
…略
<!--將成積不及格的分數以紅色顯示-->
<?
IF ($Score<50)
echo "<font color=red>" . $Score . "分,死當</font>";
ELSEIF ($Score<60)
echo "<font color=red>" . $Score . "分,補考</font>";
ELSE
echo $Score . "分,及格";
?>
</td></tr>
</table>
<hr size="1">
<p>
<!-- 重新填寫測驗卷 -->
</p>
</BODY>
</HTML>
複製代碼
再來,受測學生名單的姓名與學號務應未先行建立於資料庫的「Student」資料表,該資料表中的『first』欄位是用來紀錄『評分及公佈成績』的網頁中PHP程式所進行的分數計算結果,預設值為-1,也就是說學生成績若為「-1」分,則代表該學生尚未參加考試,若『first』欄位值為「0」或其他分數,就表示該學生已經參加過考試,因此,身分驗證檢查的試場大門網頁『indoor.php』我們就可改寫如下:
<?
'…略
//進行資料查詢
$RS=mysql_query($SQL);
//如果姓名學號驗證無誤
if ($Result=mysql_fetch_array($RS))
{
If ($Result["分數"]==-1)
{
header("Location: question.php?" . $_SERVER["QUERY_STRING"]);
}
else
{
//已經考過試
$Msg="你已經考過試了!不能再考!!";
}
}
else
{
//如果找不到對應的學號與姓名就顯示錯誤訊息
IF ($Msg=="")
$Msg="姓名或學號輸入有錯誤!";
}
EndIf;
?>
複製代碼
[attach]5841[/attach]
圖13-25 已考過試不能再考。
作者:
小誌
時間:
2011-4-24 15:35
Indoora.php
<?
//承接由Indoor表單傳來的學號、姓名資料
@$studentname=$_REQUEST["studentname"];
@$number=$_REQUEST["number"];
$Msg="";
//如果Indoor表單傳來的學號、姓名資料不是空白的
//就進行與資料庫中受測學生資料進行比對
IF (($studentname!="") && ($number!="")):
//連結MySQL Server
$conn = mysql_connect("localhost", "root", "12345a");
//選擇資料庫
mysql_select_db("exam", $conn);
//指定提取資料的校對字元表
mysql_query("set character set big5");
//提取資料的SQL命令字串
$SQL="SELECT * From student where 學號='" .$number . "' and 姓名='" .$studentname . "'";
//進行資料查詢
$RS=mysql_query($SQL);
//如果姓名學號驗證無誤
if ($Result=mysql_fetch_array($RS))
{
If ($Result["分數"]==-1)
{
header("Location: question.php?" . $_SERVER["QUERY_STRING"]);
}
else
{
//已經考過試
$Msg="你已經考過試了!不能再考!!";
}
}
else
{
//如果找不到對應的學號與姓名就顯示錯誤訊息
IF ($Msg=="")
$Msg="姓名或學號輸入有錯誤!";
}
EndIf;
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=big5">
<title>線上考試-試場大門</title>
<script language="vbscript">
<!--
<!-- 檢查有沒有輸入資料 -->
Function datacheck
<!--利用VB 檢驗字串長度的Len函數驗證欄位資料是否填寫-->
IF Len(document.indoor.studentname.value)=0 or Len(document.indoor.number.value)=0 then
<!--如果有欄位沒有填寫則秀出警告視窗-->
msg="請輸入資料!"
MsgBox msg,vbExclamation,"錯誤!"
Exit Function
End IF
<!--如果欄位資料都有填寫則觸發身分驗證的PHP程式-->
indoor.Submit
End Function
-->
</script>
</head>
<body>
<!-- 輸入資料的表單 -->
<p align="center"><font color="#FF0000" size="6" face="新細明體">線上考試-試場大門</font></p>
<!--受測學生所填的資料不正確將會出現一段錯誤訊息-->
<center><font color="red"><?=$Msg;?></font></center>
<form method="get" name="indoor" >
<div align="center">
<table border="0" width="60%">
<tr>
<td width="50%">
<p align="right"><font color="#0000FF">姓名:</font></td>
<center>
<td width="50%"><input type="text" name="studentname" size="10" value="<?=$studentname;?>"></td>
</tr>
<tr>
<td width="50%">
<p align="right"><font color="#0000FF">學號:</font></td>
<td width="50%"><input type="number" name="number" size="10" value="<?=$number;?>"></td>
</tr>
<tr>
<td width="100%" colspan="2">
<p align="center"><input type="button" value="進入考場" onclick="datacheck">
<input type="reset" value="重新輸入"></td>
</tr>
</table>
</center>
</div>
</form>
</body>
</html>
複製代碼
歡迎光臨 麻辣家族討論版版 (http://forum.twbts.com/)