thedigicraft / Atom.CMS

Atom.CMS
56 stars 52 forks source link

Part 13 - need to call some pages #103

Closed jihane-bo closed 9 years ago

jihane-bo commented 9 years ago

Hello ! please guys need help ! I have 7 pages in my browser ! and I wanna call them on the line 70 I want each page that I call from the database I want her to be attached to another page in my browser ! not my database ! any help ? thanks

jihane-bo commented 9 years ago

I've got the error .. ! well I created another column that calls " links " and I insert there all the links that I need like " index.php " "contact.php" then I called that ! here's my code :

<?php

                        $q = "select * from pages ";
                        $r = mysqli_query($dbc,$q);

                        while($nav = mysqli_fetch_assoc($r)){
                            echo'<li class="orange"><a href="'.$nav['links'].'">'.$nav['title'].'</a></li>'.$nav['title_ar'];

}

?>