Server IP : 2a02:4780:3:1493:0:3736:a38e:7 / Your IP : 216.73.216.139 Web Server : LiteSpeed System : Linux sg-nme-web1393.main-hosting.eu 4.18.0-553.40.1.lve.el8.x86_64 #1 SMP Wed Feb 12 18:54:57 UTC 2025 x86_64 User : u926327694 ( 926327694) PHP Version : 7.4.33 Disable Function : system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF Directory (0755) : /home/u926327694/domains/smsoft.in/public_html/demo/src/../ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php // First we execute our common code to connection to the database and start the session require("common.php"); // At the top of the page we check to see whether the user is logged in or not if(empty($_SESSION['user'])) { // If they are not, we redirect them to the login page. header("Location: login.php"); // Remember that this die statement is absolutely critical. Without it, // people can view your members-only content without logging in. die("Redirecting to login.php"); } // Everything below this point in the file is secured by the login system // We can display the user's username to them by reading it from the session array. Remember that because // a username is user submitted content we must use htmlentities on it before displaying it to the user. ?> <?php include "config/config.php"; $r=mysqli_query($con,"select * from class"); $r1=mysqli_query($con,"select * from division"); $b=mysqli_query($con,"select * from class"); $b1=mysqli_query($con,"select * from division"); if ($_SERVER['REQUEST_METHOD'] == 'POST') { $FromClass=$_POST["FromClass"]; $FromDivision=$_POST["FromDivision"]; $ToClass=$_POST["ToClass"]; $ToDivision=$_POST["ToDivision"]; if($ToDivision == "All") { if($FromDivision == "All") { mysqli_query($con,"update stud_basic set Class='$ToClass' where Class='$FromClass'"); } else { mysqli_query($con,"update stud_basic set Class='$ToClass' where Class='$FromClass' AND Division='$FromDivision'"); } } else { if($FromDivision == "All") { mysqli_query($con,"update stud_basic set Class='$ToClass',Division='$ToDivision' where Class='$FromClass'"); } else { mysqli_query($con,"update stud_basic set Class='$ToClass',Division='$ToDivision' where Class='$FromClass' AND Division='$FromDivision'"); } } } ?> <!DOCTYPE html> <html> <head> <!-- start: Meta --> <meta charset="utf-8"> <title>Students List</title> <meta name="description" content="Bootstrap Metro Dashboard"> <meta name="author" content="Dennis Ji"> <meta name="keyword" content="Metro, Metro UI, Dashboard, Bootstrap, Admin, Template, Theme, Responsive, Fluid, Retina"> <!-- end: Meta --> <!-- start: Mobile Specific --> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- end: Mobile Specific --> <!-- start: CSS --> <link id="bootstrap-style" href="css/bootstrap.min.css" rel="stylesheet"> <link href="css/bootstrap-responsive.min.css" rel="stylesheet"> <link id="base-style" href="css/style.css" rel="stylesheet"> <link id="base-style-responsive" href="css/style-responsive.css" rel="stylesheet"> <link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800&subset=latin,cyrillic-ext,latin-ext' rel='stylesheet' type='text/css'> <!-- end: CSS --> <!-- The HTML5 shim, for IE6-8 support of HTML5 elements --> <!--[if lt IE 9]> <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> <link id="ie-style" href="css/ie.css" rel="stylesheet"> <![endif]--> <!--[if IE 9]> <link id="ie9style" href="css/ie9.css" rel="stylesheet"> <![endif]--> <!-- start: Favicon --> <link rel="shortcut icon" href="img/favicon.ico"> <!-- end: Favicon --> <style type="text/css"> <!-- .style1 { color: #3300CC; font-weight: bold; } .style2 { color: #FF0000; font-weight: bold; } .style4 { color: #CC00FF; font-weight: bold; } --> </style> <script src="https://code.jquery.com/jquery-3.3.1.js"></script> <script src="https://cdn.datatables.net/1.10.16/js/jquery.dataTables.min.js"></script> <script src="https://cdn.datatables.net/buttons/1.5.1/js/dataTables.buttons.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/jszip/3.1.3/jszip.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.1.32/pdfmake.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.1.32/vfs_fonts.js"></script> <script src="https://cdn.datatables.net/buttons/1.5.1/js/buttons.html5.min.js"></script> <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.10.16/css/jquery.dataTables.min.css"/> <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/buttons/1.5.1/css/buttons.dataTables.min.css"/> <script type="text/javascript"> $.fn.dataTable.ext.errMode = 'none'; $(document).ready(function() { $('#example').DataTable( { dom: 'Bfrtip', buttons: [ 'copyHtml5', 'excelHtml5', 'csvHtml5', 'pdfHtml5' ] } ); } ); $(document).ready(function() { $('#example1').DataTable( { dom: 'Bfrtip', buttons: [ 'copyHtml5', 'excelHtml5', 'csvHtml5', 'pdfHtml5' ] } ); } ); $(document).ready(function() { $('#example2').DataTable( { dom: 'Bfrtip', buttons: [ 'copyHtml5', 'excelHtml5', 'csvHtml5', 'pdfHtml5' ] } ); } ); $(document).ready(function() { $('#example3').DataTable( { dom: 'Bfrtip', buttons: [ 'copyHtml5', 'excelHtml5', 'csvHtml5', 'pdfHtml5' ] } ); } ); $(document).ready(function() { $('#example4').DataTable( { dom: 'Bfrtip', buttons: [ 'copyHtml5', 'excelHtml5', 'csvHtml5', 'pdfHtml5' ] } ); } ); </script> <script src="js/jquery-migrate-1.0.0.min.js"></script> <script src="js/jquery-ui-1.10.0.custom.min.js"></script> <script src="js/jquery.ui.touch-punch.js"></script> <script src="js/modernizr.js"></script> <script src="js/bootstrap.min.js"></script> <script src="js/jquery.cookie.js"></script> <script src='js/fullcalendar.min.js'></script> <script src="js/excanvas.js"></script> <script src="js/jquery.flot.js"></script> <script src="js/jquery.flot.pie.js"></script> <script src="js/jquery.flot.stack.js"></script> <script src="js/jquery.flot.resize.min.js"></script> <script src="js/jquery.chosen.min.js"></script> <script src="js/jquery.uniform.min.js"></script> <script src="js/jquery.cleditor.min.js"></script> <script src="js/jquery.noty.js"></script> <script src="js/jquery.elfinder.min.js"></script> <script src="js/jquery.raty.min.js"></script> <script src="js/jquery.iphone.toggle.js"></script> <script src="js/jquery.uploadify-3.1.min.js"></script> <script src="js/jquery.gritter.min.js"></script> <script src="js/jquery.imagesloaded.js"></script> <script src="js/jquery.masonry.min.js"></script> <script src="js/jquery.knob.modified.js"></script> <script src="js/jquery.sparkline.min.js"></script> <script src="js/counter.js"></script> <script src="js/retina.js"></script> <script src="js/custom.js"></script> </head> <body onLoad="myFunction()"> <!-- start: Header --> <?php include "menu_f.php"; ?> <!-- start: Header --> <div class="container-fluid-full"> <div class="row-fluid"> <!-- start: Main Menu --> <div id="sidebar-left" class="span2"> <div class="nav-collapse sidebar-nav"> <ul class="nav nav-tabs nav-stacked main-menu"> <li><a href="dashboard.php"><i class="icon-bar-chart"></i><span class="hidden-tablet"> Dashboard</span></a></li> <?php include "menu.php"; ?> </ul> </div> </div> <!-- end: Main Menu --> <noscript> <div class="alert alert-block span10"> <h4 class="alert-heading">Warning!</h4> <p>You need to have <a href="http://en.wikipedia.org/wiki/JavaScript" target="_blank">JavaScript</a> enabled to use this site.</p> </div> </noscript> <!-- start: Content --> <div id="content" class="span10"> <ul class="breadcrumb"> <li> <i class="icon-home"></i> <a href="dashboard.php">Home</a> <i class="icon-angle-right"></i> </li> <li><a href="#">Upgrade Student</a></li> </ul> <div class="box-content"> <div class="row-fluid sortable"> <div class="box span12"> <div class="box-header" data-original-title> <h2><i class="halflings-icon white user"></i><span class="break"></span>SELECT<br><br></h2> <a href="dashboard.php?id=0" target="_BLANK" class="btn btn-info pull-right" style="margin-top: -11px;">Preview</a> <div class="box-icon"> </div> </div> <div class="box-content" > <form action="" method="post" > <p style="color:red;">Promote the student from one level to the next, such as from 9th to 10th grade.</p> <table width="989" border="0" align="center"> <tr> <td width="290" height="52"><div class="control-group"> <label class="control-label" for="selectError">From Class:</label> <div class="controls"> <select id="class" Name="FromClass" onchange="fun1()" required> <option></option> <?php while($row=mysqli_fetch_array($r)) { ?> <option value="<?php echo $row['Name']; ?>" ><?php echo $row['Name']; ?></option> <?php } ?> </select> </div> </div></td> <td width="364"><div class="control-group"> <label class="control-label" for="selectError">From Division:</label> <div class="controls"> <select id="Division" Name="FromDivision" required> <option value="All">All</option> <?php while($row1=mysqli_fetch_array($r1)) { ?> <option value="<?php echo $row1['Name']; ?>" ><?php echo $row1['Name']; ?></option> <?php } ?> </select> </div> </div></td> <td width="321" rowspan="2"> <table width="349" border="0" align="center"> <tr> <td width="177"><span class="style1"></span></td> <td width="150" ><span class="style1"> </span></td> </tr> <tr> <td height="23"><span class="style2"></span></td> <td><span class="style2"></span></td> </tr> <tr> <td><span class="style4"></span></td> <td><span class="style4">-</span></td> </tr> </table> <br> <br></td> </tr> <tr> <td width="290" height="52"><div class="control-group"> <label class="control-label" for="selectError">To Class:</label> <div class="controls"> <select id="class" Name="ToClass" onchange="fun1()" required> <option></option> <?php while($row=mysqli_fetch_array($b)) { ?> <option value="<?php echo $row['Name']; ?>" ><?php echo $row['Name']; ?></option> <?php } ?> </select> </div> </div></td> <td width="364"><div class="control-group"> <label class="control-label" for="selectError">To Division:</label> <div class="controls"> <select id="Division" Name="ToDivision" required> <option value="All">All</option> <?php while($row1=mysqli_fetch_array($b1)) { ?> <option value="<?php echo $row1['Name']; ?>" ><?php echo $row1['Name']; ?></option> <?php } ?> </select> </div> </div></td> </tr> <tr> <td height="49" colspan="2"> </td> </tr> </table> <center><input type="submit" class="submitstudent" ></center> </form> </div> </div> </div> <div class="row-fluid sortable" > <div class="box span12"> <div class="box-header" data-original-title> <h2><i class="halflings-icon white user"></i><span class="break"></span>Students</h2> <div class="box-icon"> </div> </div> <div class="box-content" > <?php if ($_SERVER['REQUEST_METHOD'] == 'POST') { $r5=mysqli_query($con,"SELECT * FROM `stud_basic` WHERE `Class` = '$ToClass' and `Division`= '$ToDivision' "); } ?> <table id="example" class="table table-striped table-bordered bootstrap-datatable datatable"> <thead> <tr> <th width="600px">Name</th> <th width="150px">To Class/Div</th> <th width="300px">Registred No.</th> <th width="100px">ID</th> <th width="280px">Phone</th> <th width="300px">From Class </th> <th width="300px">From Division</th> </tr> </thead> <tbody> <?php if ($_SERVER['REQUEST_METHOD'] == 'POST') { while($row=mysqli_fetch_array($r5)) { ?> <tr> <td><a href="stud_profile.php?key=<?php echo "$row[Stud_Id]"; ?>" ><?php echo "$row[Name]"; ?> </a> </td> <td class="center"><?php echo "$row[Class]/$row[Division]"; ?></td> <td class="center"><?php echo "$row[Reg_No]"; ?></td> <td class="center"><?php echo "$row[Stud_Id]"; ?></td> <td class="center"> <?php echo "$row[Phone]"; ?> </td> <td> <label> <?php echo $FromClass; ?></label> </td> <td> <label><?php echo $FromDivision; ?></label> </td> </tr> <?php } } ?> </tbody> </table> </div> </div> </div> </div> </div> <!--/.fluid-container--> <!-- end: Content --> </div><!--/#content.span10--> </div><!--/fluid-row--> <div class="clearfix"></div> <div class="clearfix"></div> <footer> <p> <span style="text-align:left;float:left">© 2018 <a href="http://evisioninfotech.in" alt="Bootstrap_Metro_Dashboard">e vision infotech</a></span> </p> </footer> <script type="text/javascript"> function fun() { alert("This Student Information With Fees Will Be Deleted Permanently"); var r = confirm("Are You Sure You Want to Delete This Student"); if (r == true) { return true; } else { return false; } } </script> <script> $(".btnDelete").click(function(){ var stud_id=$(this).data("id"); var stud_name=$(this).data("name"); var ThisTr=$(this).parents("tr"); if(confirm ("Are you sure delete "+stud_name+" student ?")) { $.ajax({ url: 'DeleteById.php', type: 'POST', data: "key="+stud_id, success: function(response) { if(response="-909") { if(confirm("First will be receipt delete then delete student. delete to receipt press ok button to redirect recipt page")) { window.location="stud_profile.php?key="+stud_id; } } else { ThisTr.remove(); } } }); } }); </script> <script> $(".submitstudent").click(function(){ var fromcd=$("select[name='FromClass']").val()+"/"+$("select[name='FromDivision']").val(); var tocd=$("select[name='ToClass']").val()+"/"+$("select[name='ToDivision']").val(); if(confirm('Are you sure transfer student from ' + fromcd + ' to ' + tocd + '?')) { return true; } else { return false; } }); </script> </body> </html>