How can I check on Blue column having a '0' for a value (or, not equal to '1' ?)
<?php if ((!empty($row_A['Red']))&&($row_A['Blue'] == 0 )){echo'Message';}?>
$row_A['Blue'] == 0
What's the problem?
Weeedpacket,
Sorry, a typo on column name caused this.
(Apparaently I'm relying on wrong error reporting -- usually wrongly named column trips an error on the page but not this time, lower case "l" slipped by.)
Your right.