SkidSec WebShell

Server Address : 2a02:4780:a:760:0:37cc:13e2:3

Web Server : LiteSpeed

Uname : Linux uk-fast-web660.main-hosting.eu 5.14.0-570.55.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Oct 21 05:27:51 EDT 2025 x86_64

PHP Version : 7.4.33



Current Path : /home/u936121314/domains/acoverseas.com/public_html/



Current File : /home/u936121314/domains/acoverseas.com/public_html/process.php
<?php include_once "./includes/header.php";?>
	
		<!-- Start Hero Section -->
		<?php 
		$page_name = "process"; include_once "./includes/hero.php";
		include_once "./backend/classes/Process.php";
		$processObj = new Process();
		?>
		<!-- End Hero Section -->

		

		<!-- Start Why Choose Us Section -->
		<div class="why-choose-section">
			<div class="container">
				
				<?php
						$process = $processObj -> getAllprocess();
						$left_to_right = true;
						while($process_item = mysqli_fetch_array($process)){
							if($left_to_right){
								?> 
								<div class="row justify-content-between">
									<div class="col-lg-5">
										<div class="img-wrap">
											<img src="images/process/<?php echo $process_item['image']?>" alt="Image" class="img-fluid">
										</div>
									</div>
									<div class="col-lg-6">
									    <div style="height:100%;display:flex;flex-direction:column;align-items:flex-start;justify-content:center">
    										<h2 class="section-title"><?php echo $process_item['heading']?></h2>
    										<p><?php echo $process_item['content']?></p>
									    </div>
									</div>
								</div>
								<?php
							}
							else{
								?>
								
								<div class="row justify-content-between">
									<div class="col-lg-6">
									    <div style="height:100%;display:flex;flex-direction:column;align-items:flex-start;justify-content:center">
    										<h2 class="section-title"><?php echo $process_item['heading']?></h2>
    										<p><?php echo $process_item['content']?></p>
									    </div>
									</div>
									<div class="col-lg-5">
										<div class="img-wrap">
											<img src="images/process/<?php echo $process_item['image']?>" alt="Image" class="img-fluid">
										</div>
									</div>
								</div>
								<?php
							}
							$left_to_right = !$left_to_right;
						}
						 ?>
			
			</div>
		</div>
		<!-- End Why Choose Us Section -->


		<?php include_once "./includes/footer.php";?>