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

Robbie Thomas
Robbie Thomas
31,093 Points

Can't get details page to work

Been following along with the Breadcrumbs video here and it appears that I didn't follow along correctly or there could be a mistake in the said video. Anyways, I can't get the details to work where one could click an item and all info is there, mine does not do that.

Here is the added code for the project at hand (what I did):

    <div class="breadcrums">
        <a href="catalog.php">Full Catalog</a>
        &gt; <a href="catalog.php?cat="<?php echo $item["category"]; ?>
        <?php echo $item["category"]; ?></a>
        &gt; <?php echo $item["title"]; ?>

Anything I'm doing wrong? Let me know if any additional info is needed.