Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

PHP Build a Basic PHP Website (2018) Listing and Sorting Inventory Items Displaying All Items

getting only 2 columns grid

I'm only getting 2 columns grid in the catalog section any help ! And here is the code for the that page.

<?php include("inc/data.php");

$pageTitle = "Full catalog"; $section = null;

if(isset($_GET["cat"])){ if($_GET["cat"] == "books"){ $pageTitle = "Books"; $section = "books"; }elseif($_GET["cat"] == "movies"){ $pageTitle = "Movies"; $section = "movies"; }elseif($_GET["cat"] == "music"){ $pageTitle = "Music"; $section = "music"; } }

include("inc/header.php");?> <div class="section catalog page"> <div class="wrapper"> <h1><?php echo $pageTitle?></h1> <ul class="items"> <?php foreach($catalog as $item){ echo "<li><a href='#'><img src='" . $item["img"] . "' alt='" . $item["title"] . "' />" ."<p>View Details</p>" ."</a><li>"; } ?>
</ul> </div> </div>

<?php include("inc/footer.php");?>

1 Answer

Angelo Maiuri
Angelo Maiuri
8,353 Points

Hey!

Your PHP looks fine to me. Please check your CSS, I think the problem might be hiding there.

Good luck, Angelo