MOON
Server: Apache
System: Linux server30c.hostingraja.org 3.10.0-962.3.2.lve1.5.63.el7.x86_64 #1 SMP Fri Oct 8 12:03:35 UTC 2021 x86_64
User: jibhires (1887)
PHP: 8.1.30
Disabled: show_source, system, shell_exec, passthru, exec, popen, proc_open, allow_url_fopen, symlink, escapeshellcmd, pcntl_exec
Upload Files
File: //home/jibhires/demo.brightsolutionsindia.com/products.php
<?php 
$page_title = "Label Solutions";
include 'header.php'; 
?>

<section class="products py-5">
    <div class="container">
        <h2 class="text-center mb-5">Specialized Labels</h2>
        <div class="row">
            <?php
            $labels = [
                'Polyester Labels' => 'High durability for industrial environments',
                'High Temp Labels' => 'Withstand extreme temperature conditions',
                'QR Code Labels' => 'Custom printed tracking solutions',
                'Thermal Labels' => 'Direct thermal printing compatibility'
            ];
            
            foreach($labels as $label => $desc): ?>
            <div class="col-md-3 mb-4">
                <div class="card h-100">
                    <div class="card-body">
                        <h5><?php echo $label; ?></h5>
                        <p><?php echo $desc; ?></p>
                    </div>
                </div>
            </div>
            <?php endforeach; ?>
        </div>
    </div>
</section>

<?php include 'footer.php'; ?>