like the following for a members area navigation area...
$mall = "html code and area scripting";
$weaponshop = "html and area scripting";
$armourshop = "html and area scripting";
$nav = array(
'mall' => <a href=members.php?place=$mall>Mall</a>,
'weapons shop' => <a href=members.php?place=$weaponshop>Weapons Shop</a,
'armour shop' => <a href=members.php?place=$armourshop>Armour Shop</a,
),
echo $nav;
this is only an example... is there any way to have all of the members area links into "members.php" instead of pointing to total different pages to have it like http://www.yourdomain.com/members.php?place=whatever if this is not the way to do it, where can i find more info on it?