Hi Im after sdome help with a problem I have. I have used php to include a simple text menu. The menu needs to use different css classes for different pages. I have set up an if / else test in the included menu to apply the classes but its not working.
Can you please help me out with what Im missing?
this is the site, the index is using the correct class for that page:
http://www.autobuyandsell.co.nz/sean/Brents%20Toyotas/
The included menu is written like this:
<?
if ($noodle = 'test') {
print 'menuhere with class in a tag';
} else {
print 'menuhere with another class in a tag';
?>