Jump to content

pages array into table


Lovac

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.