Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: for each question

Euuhh well still can’t get it to work…

I have the function:

function get_bb_menu() {

global $bbdb;

return $bbdb->get_results("SELECT * FROM $bbdb->menu WHERE set = 'active' ORDER BY order ASC");

}

This will give (tabel sperated with – ):

set – item – page – is – order

active – Forums – index.php – is_front() – 0

active – Statistic – statistics.php – is_bb_stats() – 1

active – Search – search.php – is_bb_search() – 2

Now I want this in a for each so it generates (note this is A PART what it should generate):

<li><a <?php if (is_bb_search())

{

echo "id="current"";

}?> href="<?php option('uri'); ?>search.php">Search</a></li>

<li><a <?php if (is_bb_stats())

{

echo "id="current"";

}?> href="<?php option('uri'); ?>statistics.php">Statistics</a></li>

But how to do this???

Skip to toolbar