|
|
|
เขียนโค็ดแล้วเลือกที่เมนูให้มันดึงจาก Database ไม่ได้ช่วยด้วยครับ |
|
|
|
|
|
|
|
คือผมทำแบบทดสอบออนไลน์ มีอยู่ประมาณ 5 วิชาครับแล้วอยากให้เลือกที่เมนูตามวิชาที่วางไว้ครับ เขียนยังไงก็ไม่เลือกตามรายวิชาที่ตั้งไว้ รบกวนช่วยหน่อยครับ
Code เมนู
Code (PHP)
<table class="table-full">
<tr>
<td colspan="2"><div class="title green">แบบทดสอบก่อนเรียน</div></td>
</tr>
<?php
$i=0;
$select=select("article","1=1 ORDER BY CreateDate DESC");
while($menu=mysql_fetch_array($select)){
$i++;
?>
<tr>
<td><img src="admin/images/icon/tools/Document2.png" width="20" height="20" /></td>
<td><a href="article.php?no=<?=$i;?>&ArticleID=<?=$menu['ArticleID'];?>"><?php echo $i." : ".$menu['Article']; ?></a></td>
</tr>
<tr>
<td colspan="2"><div class="line"></div></td>
</tr>
<?php } ?>
<tr>
<td><img src="images/icon/tools/Man.png" /></td>
<td><a href ="index.php">กลับสู่หน้าหลัก</a></td>
</tr>
</table>
Code แบบทดสอบ
<?php
session_start();
include ("admin/module/inc/php/config.inc.php");
include ("admin/module/inc/php/function.inc.php");
?>Code (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" />
<link href="admin/css/korea.css" rel="stylesheet" type="text/css" />
<title>สื่อการสอนทางอิเล็กทรอนิกส์</title>
</head>
<script>
function checkVal(){
for (i=1;i<=10;i++){
var rdo1=document.getElementById('Answer'+i+'_1').checked
var rdo2=document.getElementById('Answer'+i+'_2').checked
var rdo3=document.getElementById('Answer'+i+'_3').checked
var rdo4=document.getElementById('Answer'+i+'_4').checked
if (rdo1 == false && rdo2 ==false && rdo3==false && rdo4==false){
alert ('คุณยังไม่ได้เลือกคำตอบ'+i);
return false;
}
}
}
</script>
<body>
<?php
$selectPoint=select("member","Username='".$_SESSION['Username']."'");
$Bypass=mysql_fetch_array($selectPoint);
if($_SESSION['Username'] == ""){
echo "<script>";
echo "alert('กรุณาล๊อคอินเข้าสู่ระบบ');";
echo "window.location='index_testonline.php';";
echo "</script>";
}else if($Bypass['FristPoint']==0){
echo "<script>";
echo "alert('กรุณาทำแบบทดสอบก่อนเรียน');";
echo "window.location='frist_test.php';";
echo "</script>";
}else{
$no=$_GET['no'];
$ArticleID=$_GET['ArticleID'];
$select=select("article","ArticleID='".$ArticleID."'");
$arti=mysql_fetch_array($select);
$Act=$_GET['Act'];
switch($Act){
case 'checkPoint' : $AnswerTrue=$_POST['hdAnswerTrue'];
for($i=1;$i<=10;$i++){
$Answer[]=$_POST['Answer'.$i];
}
$Point=0;
for($i=0;$i<count($Answer);$i++){
if($Answer[$i]==$AnswerTrue[$i]){
$Point=$Point+1;
}
}
$FristTest=$Point;
$update=update("member","FristPoint='".$Point."'","Username='".$_SESSION['Username']."'");
$select=select("article","1=1 ORDER BY CreateDate DESC LIMIT 1");
$art=mysql_fetch_array($select);
echo "<script>";
echo "alert('คุณได้คำแนนแบบทดสอบก่อนเรียน $Point คะแนน');";
echo "window.location='article.php?no=1&ArticleID=".$art['ArticleID']."';";
echo "</script>";
break;
}
?>
<div id="warp">
<div id="login"><?php include("/login.php"); ?></div>
<div id="clear"></div>
<div id="header"></div>
<div id="clear"></div>
<div id="header-menu"><?php include("/top_menu.php"); ?></div>
<div id="clear"></div>
<div id="container">
<div id="container-left">
<form action="?Act=checkPoint" method="post">
<table class="table-full margin">
<tr>
<td align="center"><div class="green">แบบทดสอบก่อนเรียน วิชา <?=$no;?> : <?php echo $arti['Article'];?></div></td>
</tr>
<?php
$subject_id=$menu;
$no=0;
$selectQue="SELECT * FROM question WHERE subject_id='".$subject_id."'";
while($que=mysql_fetch_array($selectQue)){
$no++;
?>
<table class="table-full margin">
<tr>
<td width="17%" rowspan="2"><div class="no"><?=$no;?></div></td>
<td width="83%"><b>คำถาม :</b> <?php echo $que['Question']; ?><input type="hidden" name="hdAnswerTrue[]" value="<?=$que['AnswerTrue'];?>" /></td>
</tr>
<tr>
<td>
<?php
$noA=0;
$selectAns=select("answer","QuestionID='".$que['QuestionID']."' ORDER BY rand()");
while($ans=mysql_fetch_array($selectAns)){
$noA++;
?>
<b>คำตอบที่ <?=$noA;?></b><input type="radio" id="Answer<?=$no;?>_<?=$noA;?>" name="Answer<?=$no;?>" value="<?=$ans['Answer'];?>" /><?php echo $ans['Answer'];?><br>
<?php } ?>
</td>
</tr>
<tr>
<td colspan="2"><div class="line"></div></td>
</tr>
</table>
<?php } ?>
</td>
</tr>
<tr>
<td><input type="submit" value="ส่งคำตอบ" onclick="return checkVal();" /></td>
</tr>
</table>
</form>
</div>
<div id="container-right">
<?php include ("menu.php"); ?>
</div>
</div>
<div id="clear"></div>
<div id="footer"></div>
</div>
<?php } ?>
</body>
</html>
Tag : PHP, MySQL, HTML/CSS, JavaScript, CakePHP
|
|
|
|
|
|
Date :
2016-09-22 21:49:42 |
By :
witsarut_bell |
View :
1084 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อันนี้เป็นเมนูครับ
|
|
|
|
|
Date :
2016-09-22 21:52:27 |
By :
witsarut_bell |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|