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/setting/clientaccountlist.php
<div class="table-responsive">
    <table class="table table-bordered table-striped">
        <thead>
            <tr>
                <th style="width:80px;"><?php echo lang('sno'); ?></th>
                <th style="width: 150px;"><?php echo lang('clientaccount_number'); ?></th>
                <th><?php echo lang('clientaccount_label_name'); ?></th>
                <th><?php echo lang('clientaccount_label_postal_address'); ?></th>
                <th><?php echo lang('clientaccount_label_email'); ?></th>
                <th><?php echo lang('clientaccount_label_phone'); ?></th>
                <th><?php echo lang('actioncolumn'); ?></th>
            </tr>
        </thead>
        <tbody>
           <?php
           $i=1;
           foreach ($account as $key => $value) { ?>
            <tr>
                <td><?php echo $i++; ?></td>
                <td><?php echo $value->PIN ?></td>
                <td><?php echo $value->name ?></td>
                <td><?php echo $value->box ?></td>
                <td><?php echo $value->email ?></td>
                <td><?php echo $value->mobile ?></td>
                <td><a href="<?php echo site_url(current_lang().'/setting/client_account_edit/'.  encode_id($value->PIN)); ?>"><i class="fa fa-edit"></i> <?php echo lang('button_edit'); ?> </a> &nbsp; | &nbsp; <a href="<?php echo site_url(current_lang().'/setting/client_account_view/'.  encode_id($value->PIN)); ?>"><i class="fa fa-file"></i> <?php echo lang('button_view'); ?> </a>  </td>
            </tr>
           <?php }
           ?>
        </tbody>
    </table>

</div>