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> <?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> <li> <h4><?php echo $res_select['name']; ?></h4> </li> <li><?php echo $res_select['userID']; ?></li> <li><a href="logout.php" class="btn btn-primary" style="color:white;">Log out</a> </li> </ul> </div> </div> <div class="col-md-9"> <div class="udb"> <div class="udb-sec udb-cour" style="background: #f6f9f9;"> <div class="sdb-cours"> <ul> <?php $sql="select * from circular_update where classID ='".$res_select['classID']."'"; $remark_result= mysqli_query($conn, $sql); $n=0; while($remark_row=mysqli_fetch_array($remark_result)) { ?> <div class="col-sm-12"> <h2 style="margin-bottom: -26px;"><?php echo $remark_row['title'];?></h2> <p><?php echo $remark_row['description'];?></p> </div> <?php } ?> </ul> </div> </div> </div> </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>