Now, I am no PHP expert but maybe it will make more sense, If you say what the criteria is as opposed to what it isn't
If I am hearing your right, it should be completely backwards.
if the item is 1 or the item is 2 or the fee < 25 sig 1, is that correct? If so.
if (($item->SKU == 'part1' || $item->SKU == 'part2') || $recipient->ebay_fees > '25'){ $sig='1';} else { $sig='0';}
|