Jaguar Posted October 6, 2007 Share Posted October 6, 2007 I do not quite understand arrays. I read the documentation, but still can't accomplish my goal. I know what I want to do is this, <?php foreach($menu as $option): ?> <li> <a <?php if($option['active']): ?>class="here"<?php endif; ?> href="<?php echo $option['link']; ?>"><?php echo $option['name']; ?></a> </li> <?php endforeach; ?> However, I don't know how to build the array. Something like... $menu = array('active' => FALSE, 'link' => 'about.php', 'name' => 'About', 'active' => FALSE, 'link' => 'news_archive.php', 'name' => 'News Archive', 'active' => FALSE, 'link' => 'screenshots.php', 'name' => 'Screenshots'); but of course that doesn't work. Link to comment https://forums.phpfreaks.com/topic/72115-solved-help-making-an-array/ Share on other sites More sharing options...
sasa Posted October 6, 2007 Share Posted October 6, 2007 try $menu = array(array('active' => FALSE, 'link' => 'about.php', 'name' => 'About'), array('active' => FALSE, 'link' => 'news_archive.php', 'name' => 'News Archive'=, array('active' => FALSE, 'link' => 'screenshots.php', 'name' => 'Screenshots')); Link to comment https://forums.phpfreaks.com/topic/72115-solved-help-making-an-array/#findComment-363545 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.