? Fallagassrini

Fallagassrini Bypass Shell

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

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/eldertree/application/views/report/view_student_report.php

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

<div class="row-fluid">
    <div class="tab-pane " id="tab_2">
        <div class="portlet box yellow">
            <div class="portlet-title">
                <div class="caption"><i class="icon-reorder"></i></div>
                <div class="tools">
                    <a href="#" onclick="viewdata('report','viewinreportsearch','search_report','view_report','<?= $_SESSION['pagenum']; ?>')" class="remove"></a>
                </div>
            </div>
            <div class="portlet-body form">
                <!-- BEGIN FORM-->
                <?php
                $attributes = array('id'    => 'validateform', 'class' => 'form-horizontal validate');
                echo form_open('report/generate_report/get_students_report/_student_report', $attributes);
                $class  = $this->mastermodel->search_class_name();
                $nationality  = $this->mastermodel->search_nationality();
                ?>
                <div class="row-fluid">
                    <div class="span6">
                        <div class="portlet box yellow">
                            <div class="portlet-title">
                                <div class="caption"><i class="icon-check"></i> Students Report</div>
                            </div>
                            <div class="portlet-body">
                                <input type="hidden" name="report_name" value=" Students Report" />
                                <table class="table table-striped table-hover table-bordered" id="sample_5" style="background-color: white;">
                                    <tr><th colspan='2' style="text-align: center"> Search by Batch</th></tr>
                                    <tr>
                                        <td>
                                            Class
                                        </td>
                                        <td>
                                            <select name="class_name_id" class="" id="class_name_id">
                                                <option value="">All</option>
                                                <?php
                                                foreach ($class['results']->result_array() as $list)
                                                {
                                                    ?>
                                                    <option value="<?= $list['class_name_id'] ?>"><?= $list['class_name_code'] ?></option>
                                                    <?php
                                                }
                                                ?>
                                            </select>  
                                        </td>
                                    </tr>
                                    <tr><th colspan='2' style="text-align: center"> Search by Gender</th></tr>
                                    <tr>
                                        <td>
                                            Gender
                                        </td>
                                        <td>
                                            <select class="chosen" name="gender" id="gender" >
                                                <option value="">All</option>
                                                <option value="male">Male</option>
                                                <option value="female">Female</option>
                                            </select>  
                                        </td>
                                    </tr>
                                    <tr><th colspan='2' style="text-align: center"> Search by Nationality</th></tr>
                                    <tr>
                                        <td>
                                            Nationality
                                        </td>
                                        <td>
                                            <select name="nationality_id" class="" id="nationality_id">
                                                <option value="">All</option>
                                                <?php
                                                foreach ($nationality['results']->result_array() as $list)
                                                {
                                                    ?>
                                                    <option value="<?= $list['nationality_id'] ?>"><?= $list['nationality_name'] ?></option>
                                                    <?php
                                                }
                                                ?>
                                            </select>  
                                        </td>
                                    </tr>
                                    <tr><th colspan='2' style="text-align: center">  Search by Date</th></tr>
                                    <tr>
                                        <td>
                                            From Date
                                        </td>
                                        <td>
                                            <input name="from_date"  id="date1" type="text" class="calfocus" /> 
                                        </td>


                                    </tr>
                                    <tr>
                                        <td>
                                            To Date
                                        </td>
                                        <td>
                                            <input name="to_date"  id="date" type="text" class="calfocus" />  
                                        </td>


                                    </tr>


                                </table>

                            </div>
                        </div>
                    </div>
                    <div class="span6">
                        <div class="portlet box yellow">
                            <div class="portlet-title">
                                <div class="caption"><i class="icon-check"></i>  Report Fields</div>
                            </div>
                            <div class="portlet-body">
                                <table class="table table-striped table-hover table-bordered" id="sample_5" style="background-color: white;">
                                    <tr>
                                        <th style="text-align: center"><input type="checkbox" checked id="checkall" name="checkall" class="reportcheck" onchange="field_check_all()"/></th>
                                        <th style="text-align: center">Report Fields</th>
                                    </tr>
                                    <?php
                                    $i = 1;
                                    ?>
                                    <tr>
                                        <td style="text-align: center"><input type="checkbox" checked value="reg_no~Reg_No" name="field_name_<?= $i++; ?>" class="reportcheck" /></td>
                                        <td>Student Reg No</td>
                                    </tr>
                                    <tr>
                                        <td style="text-align: center"><input type="checkbox" value="first_name~First_Name" name="field_name_<?= $i++; ?>" checked class="reportcheck"/></td>
                                        <td>First Name</td>
                                    </tr>
                                    <tr>
                                        <td style="text-align: center"><input type="checkbox" value="last_name~Last_Name" name="field_name_<?= $i++; ?>" checked class="reportcheck"/></td>
                                        <td>Last Name</td>
                                    </tr>
                                    <tr>
                                        <td style="text-align: center"><input type="checkbox" value="gender~Gender" name="field_name_<?= $i++; ?>" checked class="reportcheck"/></td>
                                        <td>Gender</td>
                                    </tr>               
                                    <tr>
                                        <td style="text-align: center"><input type="checkbox" value="dob~DOB" name="field_name_<?= $i++; ?>" checked class="reportcheck"/></td>
                                        <td>DOB</td>
                                    </tr>                 
                                    <tr>
                                        <td style="text-align: center"><input type="checkbox" checked value="nationality~Nationality" name="field_name_<?= $i++; ?>" class="reportcheck" /></td>
                                        <td>Nationality</td>
                                    </tr>               
                                    <tr>
                                        <td style="text-align: center"><input type="checkbox" value="qatar_id~Qatar_Id" name="field_name_<?= $i++; ?>" checked class="reportcheck"/></td>
                                        <td>Qatar Id</td>
                                    </tr>                                
                                    <tr>
                                        <td style="text-align: center"><input type="checkbox" value="address~Address" name="field_name_<?= $i++; ?>" checked class="reportcheck"/></td>
                                        <td>Address</td>
                                    </tr>                
                                    <tr>
                                        <td style="text-align: center"><input type="checkbox" value="mobile_no~Mobile_No" name="field_name_<?= $i++; ?>" checked class="reportcheck"/></td>
                                        <td>Mobile No</td>
                                    </tr>               
                                    <tr>
                                        <td style="text-align: center"><input type="checkbox" value="previous_medical_illness~Allergy" name="field_name_<?= $i++; ?>" checked class="reportcheck"/></td>
                                        <td>Allergy</td>
                                    </tr> 
                                    <tr>
                                        <td style="text-align: center"><input type="checkbox" value="father_name~Father_Name" name="field_name_<?= $i++; ?>" checked class="reportcheck"/></td>
                                        <td>Father Name</td>
                                    </tr>
                                    <tr>
                                        <td style="text-align: center"><input type="checkbox" value="mother_name~Mother_Name" name="field_name_<?= $i++; ?>" checked class="reportcheck"/></td>
                                        <td>Mother Name</td>
                                    </tr>
                                    <tr>
                                        <td style="text-align: center"><input type="checkbox" value="mother_name_code~Class_Name" name="field_name_<?= $i++; ?>" checked class="reportcheck"/></td>
                                        <td>Class Name</td>
                                    </tr>
                                    <tr>
                                        <td style="text-align: center"><input type="checkbox" value="sibling_name~Sibling_Name" name="field_name_<?= $i++; ?>" checked class="reportcheck"/></td>
                                        <td>Sibling Name</td>
                                    </tr>     
                                    <tr>
                                        <td style="text-align: center"><input type="checkbox" value="sibling_reg_no~Sibling_Reg_No" name="field_name_<?= $i++; ?>" checked class="reportcheck"/></td>
                                        <td>Sibling Reg No</td>
                                    </tr> 
                                    <tr>
                                        <td style="text-align: center"><input type="checkbox" value="sibling_gender~Sibling_Gender" name="field_name_<?= $i++; ?>" checked class="reportcheck"/></td>
                                        <td>Gender</td>
                                    </tr>
                                </table>
                            </div>
                        </div>
                    </div>
                </div>
                <input type="hidden" name="field_count" value="<?= $i; ?>"/>
                <input type="hidden" name="report_type" value="view"/>

                <div class="form-actions">
                    <button style="float: right;margin-left: 10px;" type="button" class="clickimage" onclick="generate_pdf('report/generate_report/get_students_report/_student_report/view/')"  >Generate</button>
                    <button style="float: right;margin-left: 10px;" type="submit" class="clickimage" onclick="generateReport('report/generate_report/get_students_report/_student_report/xls/')" >XLS</button>
                    <button style="float: right;margin-left: 10px;" type="submit" class="clickimage" onclick="generateReport('report/generate_report/get_students_report/_student_report/pdf/')" >PDF</button>       
                </div>
                <?php
                echo form_close();
                ?>
                <!-- END FORM-->
                <div id="loadresult"></div>
                <div id="report_div"></div>
            </div>

        </div>
    </div>
</div>





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