PK

ADDRLIN : /home/questend/public_html/subdomain/trufflenation.questend.com_down/admin-final/student/
FLL :
Current File : /home/questend/public_html/subdomain/trufflenation.questend.com_down/admin-final/student/edit.php

<?php
   ob_start();
   //error_reporting(E_ALL ^ E_NOTICE);
   @session_start();
   ini_set('allow_url_include',1);    
   date_default_timezone_set("Asia/Kolkata");
   set_time_limit(600);
   ini_set('max_execution_time',600);
   require_once '../includes/settings/PDODB.php';
   include '../includes/modules/functions.php';
   
   $function = new FUNCTIONS();

   if(empty($_SESSION['adminId'])){
    header("Location: ../index.php");
    exit();
   }

   $studentdata = $function->getStudent($id=$_GET['id'],$isActive=1,$orderBy='DESC');
   $invoicedata = $function->getStudentJoinCourseList($id=NULL,$studentId=$_GET['id'],$isActive=1,$orderBy='DESC');
   //print_r($invoicedata[0]); //exit;

   if(isset($_POST['btnUpdate']) && !empty($_POST)){
        //print_r($_POST); exit;
        $username = !empty($_POST['username'])?trim($_POST['username']):"";
        $dob = !empty($_POST['dob'])?trim($_POST['dob']):"";
        $studentAddress = !empty($_POST['studentAddress'])?trim($_POST['studentAddress']):"";
        $studentState = !empty($_POST['studentState'])?trim($_POST['studentState']):"";
        $healthIssue = !empty($_POST['healthIssue'])?trim($_POST['healthIssue']):"";
        $emergencyPhoneNo = !empty($_POST['emergencyPhoneNo'])?trim($_POST['emergencyPhoneNo']):"";
        $relationWith = !empty($_POST['relationWith'])?trim($_POST['relationWith']):"";

        $gstNo = !empty($_POST['gstNo'])?trim($_POST['gstNo']):"";
        $companyName = !empty($_POST['companyName'])?trim($_POST['companyName']):"";
        $companyAddress = !empty($_POST['companyAddress'])?trim($_POST['companyAddress']):"";
        $companyState = !empty($_POST['companyState'])?trim($_POST['companyState']):"";

        $studentid = !empty($_POST['studentid'])?trim($_POST['studentid']):"";
        $orderid = !empty($_POST['orderid'])?trim($_POST['orderid']):"";

        $mobileno = !empty($_POST['mobileno'])?trim($_POST['mobileno']):"";
        $uemail = !empty($_POST['uemail'])?trim($_POST['uemail']):"";
        $batchTiming = !empty($_POST['batchTiming'])?trim($_POST['batchTiming']):"";
        $batchMonth = !empty($_POST['batchMonth'])?trim($_POST['batchMonth']):"";

        $courseId = !empty($_POST['courseId'])?trim($_POST['courseId']):"";

        $pdodb = PDODB::getInstance();
        $error = "";
        
        $coursedata = $function->getCourse($id=$courseId,$isActive=1,$orderBy='ASC');
        $typebatch = !empty($_POST['typebatch'])?trim($_POST['typebatch']):"";
        if ($typebatch =='weekday') {
             $courseduration = $coursedata[0]['weekDuration'];
        } else {
             $courseduration = $coursedata[0]['weekendDuration'];
        }

        if ($studentdata[0]['uemail']!=$uemail){
            $sqlemail = "SELECT * FROM `tn_student` WHERE `uemail` = '".$uemail."' AND `isActive`=1"; 
            $resultemail = $pdodb->query($sqlemail);
            if ($resultemail == true) {
                $error = "This email already exists.";
                //exit();
            }else {
                /*echo "uemail";
                exit;*/
                if (!empty($gstNo)) {
                    //echo "gstNo"; exit;
                    $sql = "UPDATE `tn_student` SET  `username` = '".$username."', `dob` = '".$dob."', `studentAddress` = '".$studentAddress."', `state` = '".$studentState."', `healthIssue` = '".$healthIssue."', `emergencyPhoneNo` = '".$emergencyPhoneNo."', `relationWith` = '".$relationWith."', `mobileno` = '".$mobileno."', `uemail` = '".$uemail."' WHERE `id` = '".$studentid."' AND `isActive`=1"; 
                    $result = $pdodb->query($sql);

                    $sql2 = "UPDATE `tn_order` SET  `gstNo` = '".$gstNo."', `companyName` = '".$companyName."', `companyAddress` = '".$companyAddress."', `companyState` = '".$companyState."', batchMonth='".$batchMonth."', batchTiming='".$batchTiming."', courseduration='".$courseduration."' WHERE `id` = '".$orderid."' AND `isActive`=1"; 
                    $result2 = $pdodb->query($sql2);
                    $success_msg = "Successfully updated.";
                    
                } else {
                    //echo "without gstNo";
                    //exit;
                    $sql = "UPDATE `tn_student` SET  `username` = '".$username."', `dob` = '".$dob."', `studentAddress` = '".$studentAddress."', `state` = '".$studentState."', `healthIssue` = '".$healthIssue."', `emergencyPhoneNo` = '".$emergencyPhoneNo."', `relationWith` = '".$relationWith."', `mobileno` = '".$mobileno."', `uemail` = '".$uemail."' WHERE `id` = '".$studentid."' AND `isActive`=1"; 
                    
                    $result = $pdodb->query($sql);

                    $sql2 = "UPDATE `tn_order` SET  `studentName` = '".$username."', `studentAddress` = '".$studentAddress."', `studentState` = '".$studentState."', batchMonth='".$batchMonth."', batchTiming='".$batchTiming."', courseduration='".$courseduration."' WHERE `id` = '".$orderid."' AND `isActive`=1"; 
                    $result2 = $pdodb->query($sql2);
                    $success_msg = "Successfully updated.";
                    
                }                
            }
        }elseif ($studentdata[0]['mobileno']!=$mobileno) {
            $sqlmobile = "SELECT * FROM `tn_student` WHERE `mobileno` = '".$mobileno."' AND `isActive`=1"; 
            $resultmobile = $pdodb->query($sqlmobile);
            if ($resultmobile == true) {
                $error = "This Phone number already exists.";
            }else {
                /*echo "mobile";
                exit;*/
                if (!empty($gstNo)) {
                    $sql = "UPDATE `tn_student` SET  `username` = '".$username."', `dob` = '".$dob."', `studentAddress` = '".$studentAddress."', `state` = '".$studentState."', `healthIssue` = '".$healthIssue."', `emergencyPhoneNo` = '".$emergencyPhoneNo."', `relationWith` = '".$relationWith."', `mobileno` = '".$mobileno."', `uemail` = '".$uemail."' WHERE `id` = '".$studentid."' AND `isActive`=1"; 
                    $result = $pdodb->query($sql);

                    $sql2 = "UPDATE `tn_order` SET  `gstNo` = '".$gstNo."', `companyName` = '".$companyName."', `companyAddress` = '".$companyAddress."', `companyState` = '".$companyState."', batchMonth='".$batchMonth."', batchTiming='".$batchTiming."', courseduration='".$courseduration."' WHERE `id` = '".$orderid."' AND `isActive`=1"; 
                    $result2 = $pdodb->query($sql2);

                    $success_msg = "Successfully updated.";
                    
                } else {

                    $sql = "UPDATE `tn_student` SET  `username` = '".$username."', `dob` = '".$dob."', `studentAddress` = '".$studentAddress."', `state` = '".$studentState."', `healthIssue` = '".$healthIssue."', `emergencyPhoneNo` = '".$emergencyPhoneNo."', `relationWith` = '".$relationWith."', `mobileno` = '".$mobileno."', `uemail` = '".$uemail."' WHERE `id` = '".$studentid."' AND `isActive`=1"; 
                    $result = $pdodb->query($sql);

                    $sql2 = "UPDATE `tn_order` SET  `studentName` = '".$username."', `studentAddress` = '".$studentAddress."', `studentState` = '".$studentState."', batchMonth='".$batchMonth."', batchTiming='".$batchTiming."', courseduration='".$courseduration."' WHERE `id` = '".$orderid."' AND `isActive`=1"; 
                    $result2 = $pdodb->query($sql2);

                    $success_msg = "Successfully updated.";                    
                }                
            }
        }else {
            /*echo "not change uemail aur mobile";
            exit;*/
            if (!empty($gstNo)) {
                $sql = "UPDATE `tn_student` SET  `username` = '".$username."', `dob` = '".$dob."', `studentAddress` = '".$studentAddress."', `state` = '".$studentState."', `healthIssue` = '".$healthIssue."', `emergencyPhoneNo` = '".$emergencyPhoneNo."', `relationWith` = '".$relationWith."' WHERE `id` = '".$studentid."' AND `isActive`=1"; 
                $result = $pdodb->query($sql);

                $sql2 = "UPDATE `tn_order` SET  `gstNo` = '".$gstNo."', `companyName` = '".$companyName."', `companyAddress` = '".$companyAddress."', `companyState` = '".$companyState."', batchMonth='".$batchMonth."', batchTiming='".$batchTiming."', courseduration='".$courseduration."' WHERE `id` = '".$orderid."' AND `isActive`=1"; 
                $result2 = $pdodb->query($sql2);

                $success_msg = "Successfully updated.";
            } else {

                $sql = "UPDATE `tn_student` SET  `username` = '".$username."', `dob` = '".$dob."', `studentAddress` = '".$studentAddress."', `state` = '".$studentState."', `healthIssue` = '".$healthIssue."', `emergencyPhoneNo` = '".$emergencyPhoneNo."', `relationWith` = '".$relationWith."' WHERE `id` = '".$studentid."' AND `isActive`=1"; 
                $result = $pdodb->query($sql);

                $sql2 = "UPDATE `tn_order` SET  `studentName` = '".$username."', `studentAddress` = '".$studentAddress."', `studentState` = '".$studentState."', batchMonth='".$batchMonth."', batchTiming='".$batchTiming."', courseduration='".$courseduration."' WHERE `id` = '".$orderid."' AND `isActive`=1"; 
                $result2 = $pdodb->query($sql2);

                //echo "<script type='text/javascript'>setTimeout(function(){window.location.reload();}, 1000);</script>";
                $success_msg = "Successfully updated.";
                //exit();
                //echo "<script type='text/javascript'>setTimeout(function(){window.location.reload();}, 5000);</script>";

            }
            
        }
        
   }
?>
<!DOCTYPE html>
<html>
   <head>
      <meta charset="utf-8">
      <meta name="viewport" content="width=device-width, initial-scale=1.0">
      <title>INSPINIA | Basic Form</title>
      <?php include_once '../layout/style.php'; ?>
      <link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/themes/base/jquery-ui.css">
   </head>
   <body>
      <div id="wrapper">
         <?php $currentPage = 'student-list'; include_once '../layout/side-bar.php'; ?>
         <div id="page-wrapper" class="gray-bg">
            <?php include_once '../layout/header.php'; ?>
            <div class="row wrapper border-bottom white-bg page-heading">
               <div class="col-lg-8">
                  <h2>Edit Details</h2>
               </div>
            </div> 
            <div class="row">
               <div class="col-lg-12">
                  <div class="ibox float-e-margins">
                    <div class="ibox-content">
                        <?php if (!empty($success_msg)) { 
                            header("Refresh: 2");  ?>
                          <div class="alert alert-success" role="alert" id="msgdiv">
                            <button type="button" class="close" data-dismiss="alert">x</button>
                            <?=$success_msg;?>
                          </div>                          
                          <?php } if (!empty($error)) { 
                            header("Refresh: 2"); ?>
                          <div class="alert alert-danger" role="alert" id="msgdiv">
                            <button type="button" class="close" data-dismiss="alert">x</button>
                            <?=$error;?>
                          </div>
                        <?php } ?>
                        <form class="font-weight-bold" method="POST" id="continueBtn" action="">
                           <div class="form-horizontal">
                              <div class="form-group">
                                 <label class="col-sm-2 control-label">Student Name <span>*</span></label>
                                 <div class="col-sm-4"><input name="username" value="<?=!empty($studentdata[0]['username'])?$studentdata[0]['username']:'';?>" class="form-control"></div> 
                                 <label class="col-sm-2 control-label">Date of Birth<span>*</span></label>
                                 <div class="col-sm-4"><input type="date" name="dob" value="<?=!empty($studentdata[0]['dob'])?$studentdata[0]['dob']:'';?>" class="form-control"></div> 
                              </div>                           
                              <div class="form-group">
                                 <label class="col-sm-2 control-label">Mobile<span>*</span></label>
                                 <div class="col-sm-4"><input name="mobileno" value="<?=!empty($studentdata[0]['mobileno'])?$studentdata[0]['mobileno']:'';?>" class="form-control"></div>
                                 <label class="col-sm-2 control-label">Email ID<span>*</span></label>
                                 <div class="col-sm-4"><input name="uemail" type="text" value="<?=!empty($studentdata[0]['uemail'])?$studentdata[0]['uemail']:'';?>" class="form-control"></div>
                              </div>
                              <div class="form-group">                              
                                 <label class="col-sm-2 control-label">Student Address<span>*</span></label>
                                 <div class="col-sm-4">
                                   <textarea class="form-control" name="studentAddress" id="studentAddress" class="form-control" rows="3"><?=!empty($studentdata[0]['studentAddress'])?$studentdata[0]['studentAddress']:'';?></textarea>
                                 </div>
                                 <label class="col-sm-2 control-label">Any health issue / Allergies<span>*</span></label>
                                 <div class="col-sm-4">
                                   <textarea class="form-control" name="healthIssue" id="healthIssue" class="form-control" rows="4"><?=!empty($studentdata[0]['healthIssue'])?$studentdata[0]['healthIssue']:'';?></textarea>
                                 </div>
                              </div>
                              <div class="form-group">
                                    <label class="col-sm-2 control-label">Student State<span>*</span></label>
                                    <div class="col-sm-4">
                                        <select name="studentState" id="studentState" class="form-control">
                                            <?php
                                                $studentstateListdata = $function->getStateList($id=NULL,$isActive=1);
                                                for($i=0;$i<count($studentstateListdata);$i++){ ?>
                                                <option value="<?=$studentstateListdata[$i]['id'];?>" <?=($studentdata[0]['state']==$studentstateListdata[$i]['id'])?'selected':'';?>>
                                                    <?=$studentstateListdata[$i]['state'];?>
                                                </option>
                                            <?php } ?>
                                        </select>
                                    </div>
                              </div>
                              <div class="form-group">
                                 <label class="col-sm-2 control-label">Emergency Phone no<span>*</span></label>
                                 <div class="col-sm-4"><input name="emergencyPhoneNo" value="<?=!empty($studentdata[0]['emergencyPhoneNo'])?$studentdata[0]['emergencyPhoneNo']:'';?>" class="form-control"></div>
                                 <label class="col-sm-2 control-label">Relation with above<span>*</span></label>
                                 <div class="col-sm-4"><input name="relationWith" type="text" value="<?=!empty($studentdata[0]['relationWith'])?$studentdata[0]['relationWith']:'';?>" class="form-control"></div>
                              </div>
                              
                              <?php if (!empty($invoicedata[0]['gstNo'])) {  ?>                           
                              <div class="hr-line-dashed"></div>
                              <div class="form-group">
                                 <label class="col-sm-2 control-label">GST Number<span>*</span></label>
                                 <div class="col-sm-4">
                                    <input name="gstNo" type="text" value="<?=!empty($invoicedata[0]['gstNo'])?$invoicedata[0]['gstNo']:'';?>" class="form-control">
                                    <input type="text" name="orderid" class="hide" value="<?=!empty($invoicedata[0]['id'])?$invoicedata[0]['id']:'';?>">
                                 </div>
                                 <label class="col-sm-2 control-label">Company Name<span>*</span></label>
                                 <div class="col-sm-4"><input name="companyName" type="text" value="<?=!empty($invoicedata[0]['companyName'])?$invoicedata[0]['companyName']:'';?>" class="form-control">
                                 </div>
                              </div>
                              <div class="form-group">
                                 <label class="col-sm-2 control-label">Company Address<span>*</span></label>
                                 <div class="col-sm-4">
                                   <textarea class="form-control" name="companyAddress" id="companyAddress" class="form-control" rows="3"><?=!empty($invoicedata[0]['companyAddress'])?$invoicedata[0]['companyAddress']:'';?></textarea>
                                 </div>
                                 <label class="col-sm-2 control-label">State<span>*</span></label>
                                 <div class="col-sm-4">                                    
                                    <select name="companyState" id="companyState" class="form-control">
                                        <?php
                                            $stateListdata = $function->getStateList($id=NULL,$isActive=1);
                                            for($i=0;$i<count($stateListdata);$i++){ ?>
                                            <option value="<?=$stateListdata[$i]['id'];?>" <?=($invoicedata[0]['companyState']==$stateListdata[$i]['id'])?'selected':'';?>>
                                                <?=$stateListdata[$i]['state'];?>
                                            </option>
                                        <?php } ?>
                                    </select>
                                 </div>
                              </div>
                              <?php } if ($studentdata[0]['currentPastStudent']=='yes') { 
                                 $whichCourse = $function->getCourse($id=$studentdata[0]['whichCourse'],$isActive=1,$orderBy='ASC');
                              ?>
                              <div class="hr-line-dashed"></div>
                              <div class="form-group">
                                 <label class="col-sm-2 control-label">Whether current or past student</label>
                                 <div class="col-sm-4"><input name="currentPastStudent" type="text" value="<?=!empty($studentdata[0]['currentPastStudent'])?$studentdata[0]['currentPastStudent']:'';?>" class="form-control">
                                 </div>
                                 <label class="col-sm-2 control-label">Course Name (current or past)</label>
                                 <div class="col-sm-4"><input  name="whichCourse" type="text" value="<?=!empty($whichCourse[0]['whichCourse'])?$whichCourse[0]['whichCourse']:'';?>" class="form-control">
                                 </div>
                              </div>
                              <?php } ?>
                              <div class="hr-line-dashed"></div>

                              <div class="form-group">
                                 <label class="col-sm-2 control-label">Batch Timing<span>*</span></label>
                                 <div class="col-sm-2">
                                    <select class="form-control" name="batchMonth" id="batchMonth">
                                        <option value="">-Select Month-</option>
                                        <option value='April' <?=($invoicedata[0]['batchMonth']=='April')?'selected':'';?>>April</option>
                                        <option value='May' <?=($invoicedata[0]['batchMonth']=='May')?'selected':'';?>>May</option>
                                        <option value='June' <?=($invoicedata[0]['batchMonth']=='June')?'selected':'';?>>June</option>
                                        <option value='July' <?=($invoicedata[0]['batchMonth']=='June')?'selected':'';?>>July</option>
                                        <option value='August' <?=($invoicedata[0]['batchMonth']=='August')?'selected':'';?>>August</option>
                                        <option value='September' <?=($invoicedata[0]['batchMonth']=='September')?'selected':'';?>>September</option>
                                        <option value='October' <?=($invoicedata[0]['batchMonth']=='October')?'selected':'';?>>October</option>
                                        <option value='November' <?=($invoicedata[0]['batchMonth']=='November')?'selected':'';?>>November</option>
                                        <option value='December' <?=($invoicedata[0]['batchMonth']=='December')?'selected':'';?>>December</option>
                                        <option value='Janaury' <?=($invoicedata[0]['batchMonth']=='Janaury')?'selected':'';?>>Janaury</option>
                                        <option value='February' <?=($invoicedata[0]['batchMonth']=='February')?'selected':'';?>>February</option>
                                        <option value='March' <?=($invoicedata[0]['batchMonth']=='March')?'selected':'';?>>March</option>
                                    </select>
                                 </div>
                                 <div class="col-sm-2">
                                    <select class="form-control" name="batchTiming" id="batchTiming">
                                        <option value="Morning" <?=($invoicedata[0]['batchTiming']=='Morning')?'selected':'';?> data-typebatch='weekday'>
                                            Morning
                                        </option>
                                        <option value="Evening" <?=($invoicedata[0]['batchTiming']=='Evening')?'selected':'';?> data-typebatch='weekday'>
                                            Evening
                                        </option>
                                        <option value="Weekend" <?=($invoicedata[0]['batchTiming']=='Weekend')?'selected':'';?> data-typebatch='weekend'>
                                            Weekend
                                        </option>
                                    </select>
                                    <input type="hidden" id="typebatch" name="typebatch">
                                    <input type="hidden" id="courseId" name="courseId" value="<?=$invoicedata[0]['courseId'];?>">
                                 </div>
                              </div>
                               <div class="form-group">
                                 <div class="col-sm-12">
                                    <input type="hidden" id="orderid" name="orderid" value="<?=$invoicedata[0]['id'];?>">
                                    <input type="text" name="studentid" class="hide" value="<?=$studentdata[0]['id'];?>">
                                    <button class="btn btn-lg btn-danger pull-right mr-5" name="btnUpdate" id="btnUpdate" type="submit"><strong>Update</strong></button>
                                 </div>
                              </div>                                                           
                           </div>
                        </form>
                    </div>
                </div>
               </div>
            </div>            
         </div>         
      </div>
      <?php include_once '../layout/script.php'; ?>
      <script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.11.2/jquery-ui.min.js"></script>
      
      <script>
        $(document).ready(function(){
            $('.dataTables-example').DataTable({
                dom: '<"html5buttons"B>lTfgitp',                
                buttons: [
                    { extend: 'copy'},
                    {extend: 'csv'},
                    /*{extend: 'excel', title: 'ExampleFile'},
                    {extend: 'pdf', title: 'ExampleFile'},*/
                    /*{extend: 'print',
                     customize: function (win){
                        $(win.document.body).addClass('white-bg');
                        $(win.document.body).css('font-size', '10px');
                        $(win.document.body).find('table')
                            .addClass('compact')
                            .css('font-size', 'inherit');
                        }
                    }*/
                ]
            });
        });
      </script>      
      <script type="text/javascript">
          $("#continueBtn").validate({
                rules: {   
                 username: {
                     required: true
                 },
                 mobileno: {
                      required: true,
                      minlength: 10,
                      maxlength: 10,
                      //number: true
                      digits: true
                 },
                 uemail: {
                     required: true,
                     email: true,
                 },             
                 dob: {
                     required: true,
                 },
                 studentAddress: {
                     required: true,
                 },
                 state: {
                     required: true,
                 },
                 courseName: {
                     required: true,
                 },
                 healthIssue: {
                     required: true,
                 },
                 emergencyPhoneNo: {
                     required: true,
                     minlength: 10,
                     maxlength: 10,
                     digits: true
                 },
                 relationWith: {
                     required: true,
                 },
                 whichCourse: {
                     required: true,
                 },
                 gstNo: {
                     required: true,
                     minlength: 14,
                     maxlength: 15
                 },
                 companyName: {
                     required: true,
                 },
                 companyAddress: {
                     required: true,
                 },
                 companyState: {
                     required: true,
                 }
             },
             messages: {                           
                 username: {
                     required: "Please enter your name"
                 },
                 mobileno: {
                     required: "Please enter mobile No",
                     minlength: "Mobile No Must Contain at least 10 digit",
                     maxlength: "Mobile No Must Not Exceed 10 digit",
                     digits: "Please enter only digit"
                 },
                 uemail: {
                     required: "Please enter email",
                     email: "Please enter valid email"
                 },             
                 dob: {
                     required: "Please enter Date of Birth"
                 },
                 studentAddress: {
                     required: "Please enter your Address"
                 },
                 state: {
                     required: "Please select state name"
                 },
                 courseName: {
                     required: "Please select Course"
                 },
                 healthIssue: {
                     required: "Please enter any health issue / Allergies"
                 },
                 emergencyPhoneNo: {
                     required: "Please enter Emergency Phone",
                     minlength: "Mobile No Must Contain at least 10 digit",
                     maxlength: "Mobile No Must Not Exceed 10 digit",
                     digits: "Please enter only digit"
                 },
                 relationWith: {
                     required: "Please enter Relation with above"
                 },
                 whichCourse: {
                     required: "Please select"
                 },
                 gstNo: {
                     required: "Please enter GST number",
                     minlength: "GST No Must Contain at least 14 digit",
                     maxlength: "GST No Must Not Exceed 15 digit"
                 },
                 companyName: {
                     required: "Please enter Company Name"
                 },
                 companyAddress: {
                     required: "Please enter Company Address"
                 },
                 companyState: {
                     required: "Please select state name"
                 }
             },
            submitHandler: function(form) { 
              form.submit();
            }   
          }); 
      </script>
      <script type="text/javascript">
         setTimeout(function () {
            document.getElementById("msgdiv").classList.add('hide');
         }, 3000); 
      </script>
      <script>
         $('#batchTiming').on('change', function() { 
           var typebatch = $('select#batchTiming').find(':selected').data('typebatch');
           $("#typebatch").val(typebatch);
         });
      </script>
   </body>
</html>


PK 99
E-SHOP || DASHBOARD
404

Page Not Found

It looks like you found a glitch in the matrix...

← Back to Home