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/industries.php
<?php 
$current_page = 'Industries';
$page_title = "Industries We Serve";
include 'header.php'; 
?>

<section class="py-5">
    <div class="container">
        <h2 class="text-center mb-5">Our Industry Expertise</h2>
        <div class="row g-4">
            <?php
            $industries = [
                [
                    'title' => 'Electronics Manufacturing',
                    'icon' => 'microchip',
                    'desc' => 'End-to-end traceability solutions for PCB assembly lines'
                ],
                [
                    'title' => 'Automotive',
                    'icon' => 'car',
                    'desc' => 'IoT-enabled production monitoring and quality control'
                ],
                [
                    'title' => 'Textiles',
                    'icon' => 'tshirt',
                    'desc' => 'Automated inventory management and workflow optimization'
                ]
            ];
            
            foreach($industries as $industry): ?>
            <div class="col-md-4">
                <div class="card h-100 shadow">
                    <div class="card-body text-center p-4">
                        <i class="fas fa-<?= $industry['icon'] ?> fa-3x text-primary mb-3"></i>
                        <h4 class="card-title"><?= $industry['title'] ?></h4>
                        <p class="card-text"><?= $industry['desc'] ?></p>
                    </div>
                </div>
            </div>
            <?php endforeach; ?>
        </div>
    </div>
</section>

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