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. Quote 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')); Quote 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
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.