Jump to content

[SOLVED] Help making an array


Jaguar

Recommended Posts

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

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.