thedigicraft / Atom.CMS

Atom.CMS
56 stars 52 forks source link

Part 13: Navigation shows only the one i have selected #150

Open ashotosipyan opened 8 years ago

ashotosipyan commented 8 years ago

while($nav = mysqli_fetch_assoc($result)) { ?>

                <li <?php if($pageId == $nav['page_id']){echo 'class="active"';} ?> >
                    <a class="page-scroll hvr-underline-from-center"  href="?page=<?php echo $nav['page_id']; ?>">
                    <?php echo $nav['page_name']; ?></a>
                </li>

           <?php } ?>

Here is my code, and i can see my navigation pages only by writing page number in search bar, can you help me?

creptor commented 8 years ago

I'll need the hole code to help you... That part just outputs what you have fetch, so I need the query to the server to understand all your code.

creptor commented 8 years ago

An image of your site would be helpful too