MOON
Server: Apache
System: Linux host.sunshiene.com 4.18.0-553.121.1.el8_10.x86_64 #1 SMP Thu Apr 30 09:06:34 EDT 2026 x86_64
User: clientsoftwares (1005)
PHP: 8.1.34
Disabled: system, exec, mail, shell_exec, passthru, popen, proc_open, pcntl_exec, dl, ini_alter, ini_restore, symlink, link, chown, posix_kill
Upload Files
File: /home/clientsoftwares/public_html/software/loan/application/views/account/reseller_account_list.php
<?php
if (isset($message)) {
    echo '<div style="margin-bottom:20px;" class="btn btn-success btn-block">' . $message . '</div><br/>';
} else if ($this->session->flashdata('message') != '') {
    echo '<div style="margin-bottom:20px;" class="btn btn-success btn-block">' . $this->session->flashdata('message') . '</div>';
} else if (isset($warning)) {
    echo '<div style="margin-bottom:20px;" class="btn btn-danger btn-block">' . $warning . '</div>';
}
?>
<div style="text-align: right; padding-bottom: 10px;"><a href="<?php echo site_url(current_lang().'/account/create_resseller_account'); ?>"><button class="btn btn-lg btn-sm btn-primary">
            <i class="fa fa-plus"></i>
            <?php echo lang('account_reseller_account_create'); ?></button></a></div>

<table class="table table-bordered  table-hover">
    <thead>
    <th style="width: 70px;"><?php echo lang('sno'); ?></th>
    <th><?php echo lang('index_fname_th'); ?></th>
    <th><?php echo lang('index_lname_th'); ?></th>
    <th><?php echo lang('index_email_th'); ?></th>
    <th><?php echo lang('mobile'); ?></th>
    <th><?php echo lang('index_action_th'); ?></th>
   
    </thead>
    <tbody>
        <?php
        $i=1;
        foreach ($resellers as $key => $value) { ?>
        <tr>
            <td><?php echo $i++; ?></td>
            <td><?php echo $value->firstname ?></td>
            <td><?php echo $value->lastname ?></td>
            <td><?php echo $value->email ?></td>
            <td><?php echo $value->mobile ?></td>
            <td><a href="<?php echo site_url(current_lang().'/account/create_resseller_account/'.$value->id) ?>"><i class="fa fa-edit"></i><?php echo lang('edit') ?></a></td>
        </tr>
        <?php }
        ?>
    </tbody>
    
</table>