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/myclient_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>';
}
?>

<table class="table table-bordered  table-hover">
    <thead>
    <th style="width: 70px;"><?php echo lang('sno'); ?></th>
    <th><?php echo lang('client_account_name'); ?></th>
    <th style="width: 120px;"><?php echo lang('client_account_mobile'); ?></th>
    <th style="width: 200px;"><?php echo lang('create_user_email_label'); ?></th>
    <th style="width: 200px;"><?php echo lang('client_account_address'); ?></th>
    <th style="width: 50px;"><?php echo lang('index_action_th'); ?></th>
   
    </thead>
    <tbody>
        <?php
        $i=1;
        if(count($client_list)){
        foreach ($client_list as $key => $value) { ?>
        <tr>
            <td><?php echo $i++; ?></td>
            <td><?php echo $value->name ?></td>
            <td><?php echo $value->mobile ?></td>
            <td><?php echo $value->email ?></td>
            <td><?php echo $value->address ?></td>
             <td><a href="<?php echo site_url(current_lang().'/account/client_account_create/'.$value->id) ?>"><i class="fa fa-edit"></i><?php echo lang('edit') ?></a></td>
            
        <?php } }else { ?>
        <tr>
            <td colspan="6"><?php echo lang('no_data'); ?></td>
        </tr>
        <?php }
        ?>
    </tbody>
    
</table>