hjkhhrtertererrrrrerrtertertertertertertert
bnmbnerterterterterterdfgdfgdfgdfgdfgdfgdfgdfgdfg
/
home4
/
digil8bw
/
arrowaim.in
/
Upload FileeE
HOME
<?php ob_start(); include("configuration/function-include.php"); if(!empty($_REQUEST['datafrmSubmit'])){ $_REQUEST['datafrmSubmit'] = $_REQUEST['datafrmSubmit']; } else { $_REQUEST['datafrmSubmit'] = ''; } if(empty($_SESSION["ID"])){ header("location:index.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> <style> table { width: 750px; border-collapse: collapse; margin:50px auto; } /* Zebra striping */ tr:nth-of-type(odd) { background: #eee; } th { background: #3498db; color: white; font-weight: bold; } td, th { padding: 10px; border: 1px solid #ccc; text-align: center; font-size: 18px; } /* Max width before this PARTICULAR table gets nasty This query will take effect for any screen smaller than 760px and also iPads specifically. */ @media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) { table { width: 100%; } /* Force table to not be like tables anymore */ table, thead, tbody, th, td, tr { display: block; } /* Hide table headers (but not display: none;, for accessibility) */ thead tr { position: absolute; top: -9999px; left: -9999px; } tr { border: 1px solid #ccc; } td { /* Behave like a "row" */ border: none; border-bottom: 1px solid #eee; position: relative; padding-left: 50%; } td:before { /* Now like a table header */ position: absolute; /* Top/left values mimic padding */ top: 6px; left: 6px; width: 45%; padding-right: 10px; white-space: nowrap; /* Label the data */ content: attr(data-column); color: #000; font-weight: bold; } } </style> <?php include'header.php' ?> <!--SECTION START--> <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> <?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="stu-db"> <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> <div class="container"> <div class="row"> <?php $sql_select = "Select * from profile where userID = '".$_SESSION["ID"]."'"; $query_select = mysqli_query($conn, $sql_select); $res_select = mysqli_fetch_array($query_select); if(mysqli_num_rows($query_select)>0){ ?> <div class="col-lg-9"> <table> <thead> <tr> <th>Subject </th> <th>Title</th> <th>Result</th> </tr> </thead> <tbody> <?php $sql="select * from result where classID ='".$res_select['classID']."'"; $remark_result= mysqli_query($conn, $sql); $n=0; if($remark_row=mysqli_fetch_array($remark_result)) { ?> <tr> <td data-column="Subject"> <?php $sql_subject = "Select * from subject "; $query_subject = mysqli_query($conn, $sql_subject); $res_subject = mysqli_fetch_array($query_subject) ?> <?php echo $res_subject['subject']; ?> </td> <td data-column="Title"> <?php $sql_questionbank = "Select * from questionbank "; $query_questionbank = mysqli_query($conn, $sql_questionbank); $res_questionbank = mysqli_fetch_array($query_questionbank) ?> <?php echo $res_questionbank['topic']; ?> </td> <td data-column="Result" style="text-align:center;"> <a href="upload/result/<?php echo $remark_row['result']; ?>" target="_blank" class="btn btn-danger btn-theme-colored btn-sm text-uppercase mt-10">View Result </a> </td> <?php } ?> </tr> <?php }else{ ?> <h2 >There are no Result available for your Class</h2> <?php } ?> </tbody> </table> </div> </div> </div> </section> <!--SECTION END--> <?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>