On Thu, 2007-10-18 at 19:57 -0500, ron.php wrote: > I just tried to send this to the list. I am not trying make it post again, I > don't think I had the e-mail address correct the first time. > > I am trying to stop $component_reference from doing the echo below when the > value is 5 or 19. I don't have the syntax right though. What did I miss? > > Ron > > if ( ($component_reference != "5") OR ($component_reference != "19") ) { > echo "<li><a href=\"index.php?request=" . $request . "\">" . > $component_name . "</a>"; > } Use AND instead of OR. Otherwise use the following: if( !($component_reference == "5" OR $component_reference == "19") ) { echo "<li><a href=\"index.php?request=" . $request . "\">" . $component_name . "</a>"; } Cheers, Rob. -- ........................................................... SwarmBuy.com - http://www.swarmbuy.com Leveraging the buying power of the masses! ........................................................... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php