Kitty Juice
2009-10-17 18:33:39 UTC
It's a nav bar that determines what css class to use based on the file name.
template.php:
$nav_bar =
"
Six answers:
Hunter
2009-10-17 19:00:00 UTC
$nav_bar =
"
anonymous
2009-10-17 19:46:49 UTC
"
exch
2009-10-17 18:54:02 UTC
Try this:
$nav_bar = '
$nav_bar .= '">Forum
?>
Codster
2009-10-17 20:26:38 UTC
>" should not have because you already are using php to echo the variable.
quayman0001
2009-10-17 19:19:42 UTC
When you echo a variable, don't use double quotes. Saying echo "$nav_bar" will give you output of "$nav_bar"
Change that line to:
echo $nav_bar;
and it should work!
anonymous
2009-10-17 18:37:45 UTC
ⓘ
This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...