Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: for each question

Still no luck :(

I have this:

<?php

global $bbdb;

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

while($rw = mysql_fetch_array($r))

{

$class="";

if ($rw['is']) { $class .=" current" }

echo '<li><a class="$current" href="'.$rw['page'].'">'.$rw['item'].'</a></li>';

}

?>

Which is the same code as yours, but I still get the error:

Parse error: parse error, unexpected '}' on header.php on line 84

And line 84 contains the if:

if ($rw['is']) { $class .=" current" }

I am totally lost here :S

Skip to toolbar