hjkhhrtertererrrrrerrtertertertertertertert
bnmbnerterterterterterdfgdfgdfgdfgdfgdfgdfgdfgdfg
/
home4
/
digil8bw
/
arrowaim.in
/
Upload FileeE
HOME
<?php ob_start(); include("configuration/function-include.php"); ?> <!DOCTYPE html> <html lang="en"> <head> <title>Arrow Aim Academy</title> <!-- META TAGS --> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content="Arrow Aim Academy is one of the best educational Academy, it's suitable for all education online education,tution center,distance education,computer education"> <meta name="keyword" content="education, Best Academy,"> <!-- FAV ICON(BROWSER TAB ICON) --> <link rel="shortcut icon" href="images/icon.png" type="image/x-icon"> <!-- GOOGLE FONT --> <link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700%7CJosefin+Sans:600,700" rel="stylesheet"> <!-- FONTAWESOME ICONS --> <link rel="stylesheet" href="css/font-awesome.min.css"> <!-- ALL CSS FILES --> <link href="css/materialize.css" rel="stylesheet"> <link href="css/bootstrap.css" rel="stylesheet" /> <link href="css/style.css" rel="stylesheet" /> <link href="css/style-mob.css" rel="stylesheet" /> </head> <body> <?php include 'header.php' ?> <section> <div class="pro-cover"> </div> <div class="pro-menu"> <div class="container"> <div class="col-md-10 col-md-offset-3"> <ul> <li><a href="db-profile.php">Profile</a></li> <li><a href="#">Attendance</a></li> <li><a href="circularupdates.php">Circular Updates</a></li> <li><a href="db-homework.php">Homework</a></li> <li><a href="fees.php">Fee</a></li> <li><a href="payments.php">History</a></li> <li><a href="result.php">Result</a></li> <li><a href="questionbank.php">Question Bank</a></li> <li><a href="test.php">Test-Series</a></li> <li><a href="#">Notes</a></li> </ul> </div> </div> </div> <div class="stu-db"> <?php $sql_select = "Select * from profile where userID = '".$_SESSION["ID"]."'"; $query_select = mysqli_query($conn, $sql_select); $res_select = mysqli_fetch_array($query_select); ?> <div class="container pg-inn"> <div class="col-md-3"> <div class="pro-user"> <?php if(!empty($res_select['photo'])){ ?> <img src="upload/photo/<?php echo $res_select['photo'];?>" class="img-responsive" style="height: 200px;width:100%; "> <?php } else { ?> <img src="images/download.jpg" class="img-responsive" style="height: 200px;width:100%; "> <?php } ?> </div> <div class="pro-user-bio"> <ul> <?php $sql_name = "Select * from register where id = '".$_SESSION["ID"]."'"; $query_name = mysqli_query($conn, $sql_name); $res_name = mysqli_fetch_array($query_name);?> <li> <h4><?php echo $res_name['name']; ?></h4> </li> <li>Student Id: <?php echo $res_name['id']; ?></li> <li><a href="logout.php" class="btn btn-primary" style="color:white;">Log out</a> </li> </ul> </div> </div> <section class="quiz-view" style="text-align:center;"> <div class="col-sm-8 col-md-9"> <div class=""> <?php if(!empty($_SESSION['freetestID'])){ $testid=$_SESSION['freetestID']; }else{ header('Location:index.php'); } $fetchqry = "SELECT * FROM `testseries_question` where qid = '".$_SESSION['freetestID']."'"; $query=mysqli_query($conn,$fetchqry); $result=mysqli_fetch_array($query); $ques=explode(',',$result['question']); for($i=0;sizeof($ques)>$i;$i++){ if(!empty($ques[$i])){ @$userselected = $_POST[$i+1]; $fetchqry2 = "UPDATE `addquestion` SET `userans`='$userselected' WHERE `id`='".$ques[$i]."'"; mysqli_query($conn,$fetchqry2); } } $qry3 = "SELECT `answer`, `userans` FROM `addquestion`;"; $result3 = mysqli_query($conn,$qry3); while ($row3 = mysqli_fetch_array($result3, MYSQLI_ASSOC)) { if($row3['answer']==$row3['userans']){ @$_SESSION['score'] += 1 ; } } ?> <div class='row'> <div class="col-md-offset-2 col-md-8" style="text-align:center;"> <h2>Result:</h2><br><br> <span style="color: red; font-size: 22px;"><b>No. of Correct Answer:</b> <?php echo $no = @$_SESSION['score']; unset($_SESSION['score']); unset($_SESSION['freetestID']); ?></span><br><br> <span style="color: red; font-size: 22px;"><b>Total Question:</b> <?php echo (sizeof($ques)-1); ?></span> </div> </div> </div> </div> </section> </div> </div> </section> <?php include 'footer.php' ?> <!--Import jQuery before materialize.js--> <script src="js/main.min.js"></script> <script src="js/bootstrap.min.js"></script> <script src="js/materialize.min.js"></script> <script src="js/custom.js"></script> </body> </html>