Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Small php problem. Re: Small php problem.

#91743
Johann
Member

replace

if ($_GET == 'frontpage' || 'partners') {

with

if ($_GET == 'frontpage' || $_GET == 'partners') {

you know, ‘partners’ by itself always evaluates to true :P