Question Everything!
New member
Is this sloppy or depreciated?
if ($online) {
some function
}
OR should it be
if ($online == "yes") {
some function
}
if ($online) {
some function
}
OR should it be
if ($online == "yes") {
some function
}