HEX
Server: LiteSpeed
System: Linux s1.hostssdserver.com 4.18.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
User: dreamlan (1220)
PHP: 8.3.32
Disabled: exec,system,passthru,shell_exec,proc_open,popen,apache_child_terminate
Upload Files
File: /home/dreamlan/public_html/wp-content/plugins/dreamland-nepal/admin/partials/display_district.php
<?php 
require_once plugin_dir_path( dirname(__FILE__) ) .'partials/helpers/helpers.php';

?>
<div class="fire-full-header">
    <h1>All District</h1>
    <a class="add-button" href="<?php echo  admin_url('admin.php?page=dreamlandnepal/district/add'); ?>">Add New
        District</a>
    <button class="add-button bulkImport" table="district_table">Bulk Import</button>

</div>


<?php 
$district_pre = "district_single_";
global $wpdb;
$table_name = $wpdb->prefix . "district_table"; 
$post_id = $wpdb->get_results("SELECT * FROM $table_name");

?>

<div class="fire-full">
    <?php if($post_id != NULL): ?>
    <table>
        <thead>
            <tr>
                <?php foreach(get_object_vars($post_id[0]) as $key => $v){?>
                <th> <?php echo $key; ?> </th>
                <?php } ?>
                <th> Options </th>
            </tr>
        </thead>
        <tbody>
            <?php foreach($post_id as $p){?>
            <tr>
                <?php foreach(get_object_vars($p) as $key=>$v){?>
                <td><?php echo ($key == "coordinate")? onlyExcerpt($v) : $v; ?></td>
                <?php } ?>
                <td>
                    <a class="edit"
                        href="<?php echo admin_url('admin.php?page=dreamlandnepal/district/add&proid='.$p->id.'&action=edit')?>">Edit</a>
                    <button class="delete" table="district_table"
                        id="<?php echo 'delete_'.$p->id.'_'.wp_create_nonce('delete_' . $p->id ); ?>">Delete</button>
                </td>
            </tr>
            <?php }?>
        </tbody>
    </table>
    <?php else: ?>
    <h3>No Districts Found</h3>
    <?php endif; ?>
</div>