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/services.php
<?php 
$page_title = "Our Services";
include 'header.php'; 
?>

<section class="services py-5">
    <div class="container">
        <h2 class="text-center mb-5">Core Solutions</h2>
        <div class="row">
            <?php
            $services = [
                [
                    'title' => 'Industry 4.0 Automation',
                    'icon' => 'factory',
                    'desc' => 'Complete smart factory solutions with machine integration and data analytics'
                ],
                [
                    'title' => 'End-to-End Traceability',
                    'icon' => 'qrcode',
                    'desc' => 'Customized tracking solutions for inventory, assets, and production processes'
                ],
                [
                    'title' => 'Barcode Integration',
                    'icon' => 'barcode',
                    'desc' => 'Comprehensive barcode solutions from generation to system integration'
                ]
            ];
            
            foreach($services as $service): ?>
            <div class="col-md-4 mb-4">
                <div class="card h-100">
                    <div class="card-body">
                        <h5 class="card-title"><?php echo $service['title']; ?></h5>
                        <p class="card-text"><?php echo $service['desc']; ?></p>
                    </div>
                </div>
            </div>
            <?php endforeach; ?>
        </div>
    </div>
</section>

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