Lovac Posted February 2, 2010 Share Posted February 2, 2010 Hello, im using this code as menu, now i need help to form links into table <?php //Full page list $pages = array( "page1"=>"Index", "page2"=>"Page 2", "page3"=>"Page 3", "page4"=>"Page 4", "page5"=>"Contact", ); //Get Page selected $page = (empty($_GET['str']))?"main.html":$_GET['str']; //Display links echo PageLinks($page,$pages); ?> So generated link like Index, Page 2, Page 3, Page 4, Contact must be in table. And i dont know how to perfom this into php Link to comment https://forums.phpfreaks.com/topic/190666-pages-array-into-table/ Share on other sites More sharing options...
RussellReal Posted February 3, 2010 Share Posted February 3, 2010 why in a table? echo "<table>"; foreach ($pages as $page) { echo "<tr><td>{$page}</td></tr>"; } echo "</table>"; Link to comment https://forums.phpfreaks.com/topic/190666-pages-array-into-table/#findComment-1005869 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.