Skip to content
Snippets Groups Projects
Commit c69d5d6c authored by totoW's avatar totoW
Browse files

commit

parent 20a1dcb7
No related branches found
No related tags found
No related merge requests found
......@@ -43,6 +43,7 @@ switch ($j) {
}
include("../html/data_treatment/connect_database.php");
echo "Hello Mr./Ms. ".explode('@',$_SESSION["username"])[0].", you were last online on ".$Fday." - ".$day.".".$month.".".$year.".";
?>
<html lang="en">
<head>
......@@ -175,7 +176,25 @@ include("../html/data_treatment/connect_database.php");
<h3 class="section-subheading text-muted">The best quality is here</h3>
</div>
<div class="row">
<?php
for($i=0; $i<count($articles); $i++){
?>
<div class="col-lg-4 col-sm-6 mb-4">
<!-- Portfolio item 1-->
<div class="portfolio-item">
<a class="portfolio-link" data-bs-toggle="modal" <?php echo 'href="#portfolioModal'.$i.'"' ?>>
<div class="portfolio-hover">
<div class="portfolio-hover-content"><i class="fas fa-plus fa-3x"></i></div>
</div>
<img class="img-fluid" src=<?php echo "'../image/laptops/".$articles[$i]["imagename"]."'"; ?> alt="..." />
</a>
<div class="portfolio-caption">
<div class="portfolio-caption-heading"><?php echo $articles[$i]["itemName"]?></div>
<div class="portfolio-caption-subheading text-muted"><?php echo $articles[$i]["price"]." €"?></div>
</div>
</div>
</div>
<?php };?>
</div>
</div>
</section>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment