Server IP : 108.163.255.210 / Your IP : 18.222.182.226 Web Server : Apache System : Linux blossom.urlnameserver.com 3.10.0-1160.80.1.el7.x86_64 #1 SMP Tue Nov 8 15:48:59 UTC 2022 x86_64 User : ( 1172) PHP Version : 7.2.34 Disable Function : eval,escapeshellarg,proc_close,proc_get_status,proc_nice,proc_open,symlink,system,pcntl_exec,getrusage,chown,chgp,closelog,openlog,syslog,define_syslog_variables,php_ini_loaded_file,getservbyname,getservbyport,posix_getgid,posix_getgrgid,proc_terminate,pfsockopen,apache_child_terminate,posix_mkfifo,posix_setpgid,posix_setuid,hypot,pg_host,pos,posix_access,posix_getcwd,posix_getservbyname,myshellexec,getpid,posix_getsid,posix_isatty,posix_kill,posix_mknod,posix_setgid,posix_setsid,posix_setuid,posix_times,posix_uname,ps_fill,posix_getpwuid,global,ini_restore,zip_open,zip_read,rar_open,bzopen,bzread,bzwrite,apache_get_modules,apache_get_version,phpversionphpinfo,php_ini_scanned_files,get_current_user,disk_total_space,diskfreespace,leak,imap_list,hypo,filedump,safe_mode,getmygid,apache_getenv,apache_setenv,bzread,bzwrite,bzopen,phpini,higlight_file,dos_conv,get_cwd,er_log,cmd,e_name,vdir,get_dir,only_read,ftok,ftpexec,posix_getpwnam,mysql_list_dbs,disk_free_space,session_save_path,confirm_phpdoc_compiled,zip_entry_rea,php_u,psockopen,crack_opendict,crack_getlastmessage,crack_closedict,crack_check,fpassthru,posix_get_last_error,posix_getlogin,posix_getgroups,posix_strerror,posix_getrlimit,posix_getpgrp,posix_getgrnam,pos,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/unilinki/www/payroll/admin/ |
Upload File : |
<?php session_start(); @error_reporting(E_ALL & ~E_NOTICE); if(!isset($_SESSION["adminuser"]) || $_SESSION["adminuser"]=="") { header("Location:login.php"); exit; } $uid=md5(uniqid(rand())); include("../include/db.php"); date_default_timezone_set('UTC'); $sysdate=date("Y/m/d h:i:s"); $stdate1=date("l, d F Y"); $obj=new query_execution(); if(checkquery('action','edit')){ $aid=$_GET['aid']; $row_select=mysql_query("select * from admin where admin_id='".$aid."'") or die(mysql_error()); $tot_select=mysql_num_rows($row_select); $heading="User"; $subheading="Edit User"; if($tot_select!='0'){ while($row=mysql_fetch_array($row_select)){ $username=$row['username']; $roleid=$row['roleid']; $first_name=$row['first_name']; $last_name=$row['last_name']; $useremail=$row['useremail']; $status=$row['status']; } } $submit="Update"; $action="update"; $submit_title="user_submit_update"; }else{ $heading="class"; $subheading="Add Class"; $submit="Add"; $action="add"; $submit_title="user_submit"; } $res_role=mysql_query("select * from roles group by role_name order by roleid") or die(mysql_error()); require_once("header.php"); ?> <!----header ends--> <!-- Left side column. contains the logo and sidebar --> <?php require_once("left.php"); ?> <!-- Content Wrapper. Contains page content --> <div class="content-wrapper"> <!-- Content Header (Page header) --> <section class="content-header"> <h1>Manage <?php echo $heading?></h1> <ol class="breadcrumb"> <li><a href="dashboard.php"><i class="fa fa-dashboard"></i> Home</a></li> <li class="active"><?php echo $subheading?></li> </ol> </section> <!-- Main content --> <section class="content"> <div class="row"> <!-- right column --> <div class="col-md-12"> <!-- Horizontal Form --> <div class="box box-info"> <div class="box-header with-border"> <h3 class="box-title"><?php echo $subheading?></h3> </div><!-- /.box-header --> <!-- form start --> <form name="form-signup_v1" method="post" action="" class="form-horizontal validation-form-container" enctype="multipart/form-data"> <div class="box-body"> <div class="form-group field"> <label for="signup_v1-cat_name" class="col-sm-2 control-label">Class Name</label> <div class="col-sm-10 ui left labeled input"> <input type="text" class="form-control" placeholder="Class Name" name="classname" id="username" value="<?php echo $username?>" data-validation="[NOTEMPTY]" data-validation-message="Class Name must not be empty" required> <div class="ui corner label"> <i class="asterisk icon">*</i> </div> </div> </div> </div><!-- /.box-body --> <div class="box-footer"> <button type="button" class="btn btn-default" onclick="location.href='manage_class.php'">Cancel</button> <input type="submit" name="smt" value="<?php echo $submit?>" class="btn btn-info pull-right"> </div><!-- /.box-footer --> </form> </div><!-- /.box --> </div><!--/.col (right) --> </div> <!-- /.row --> </section><!-- /.content --> </div><!-- /.content-wrapper --> <?php require_once("footer.php"); ?> <?php if(isset($_POST['smt'])) { $insert=mysql_query("insert into class (`classname`) values ('".$_POST['classname']."')"); if($insert>0) { echo "<script>window.location='manage_class.php'</script>"; } } ?>