I have a piece of script that has..
if (!$result || db_numrows($result) < 1) {
echo 'Sorry Users In That Country';
return false;
} else {.....
When you look at it in a browser, it literly just stops at 'Sorry Users In That Country' There is meant to be a lot more html atfer this that is outside of this function. I have a footer.php included at the end of the file..
}
include($DOCUMENT_ROOT.'/include/footer.php');
and it doesn't print that! Does anyone know why?
Cheers
Ben