0xV3NOMx
Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64



Your IP : 13.59.83.202


Current Path : /var/www/html/oums/src/
Upload File :
Current File : /var/www/html/oums/src/sys_module.php

<div class="list-group" style="text-align:left; cursor:pointer;">					
    <?php
    include("sys_connect.php");
    $mysql="select * from sys_module where fmodecode not in ('11','99') and ifnull(fdeleted,'F')<>'T' order by fmodeordr";		
    $myres=mysqli_query($mycon,$mysql);
    while($row = mysqli_fetch_assoc($myres))
    {
        $mode_code=$row['fmodecode'];
        $mode_name=$row['fmodename'];
        echo "<a class='list-group-item' onClick='sele_mode_page($mode_code);'><span class='glyphicon glyphicon-check'></span> $mode_name</a>";
    }
    ?>
</div>