The following if statement does not seem to be working for me.
The two values in b1rafrica and b2rafrica are BIGINTs being pulled from a MySQL database (perhaps that might be something to do with it?).
When I run it with these values the site doesn't load:
b1rafrica = 200 b2rafrica = 150
If I remove the else then the site works...
I'm a total PHP noob so I apologise in advance if i'm doing something very stupid.
if ($b1rafrica >= $b2rafrica) {
$africastyle ="africab1";
}
} else {
$africastyle ="africab2";
}
Cheers,
Will