Hi Guys, I need help fixing this code. I need it to be true for when there is as value for $first_ad_top OR $second_ad_top. I tried the following but it didn't work. if (!empty($first_ad_top)) or (!empty($second_ad_top)) Code (markup): Anyways, here the is the code I'm dealing with. <?php $first = get_option('first'); $second = get_option('second'); if (!empty($first_ad_top)) { blabber blabber and the rest of the code } ?> Code (markup):
if (!empty($first_ad_top) or !empty($second_ad_top)) {....} or if (!empty($first_ad_top) || !empty($second_ad_top)) {....}