HEX
Server: Apache
System: Linux ns308404 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
User: root (0)
PHP: 8.3.31
Disabled: opcache_get_status
Upload Files
File: /var/www/vhosts/onlinedev.com/httpdocs/templates/left_projects_box.phtml
<?php
$project = new Project();
$r_projects =  $project->getRandom(2);
?>

<?php if(count($r_projects)) : ?>
<h2 class="title3"><a href="<?php echo App::getBaseUrl() ?>nos_realisations.html" title="Nos r&eacute;alisations"><span>Meilleures Agences SEO</span></a></h2>
<ul class="m2">
<?php foreach ($r_projects as $item): ?>
  <li>
      <a href="realisations/<?php echo $item['url'] ?>.html" title="<?php echo $item['title'] ?>"><strong><?php echo $item['title']?></strong></a><br />
                    <a href="realisations/<?php echo $item['url'] ?>.html" title="<?php echo $item['title'] ?>">
                        <img class="border1" src="<?php echo getThumb('projects/'.$item['image'], 194, 0, 'dynamic') ?>" />
                    </a><br />
                    <p class="text3"><?php echo $item['description']?></p>
                </li>
<?php endforeach; ?>
</ul>
<?php endif;?>