I have struggled with this code below to get no more than two variables to filter through the statement sections, but what wish to achieve is running as many as variables needed and filter through them. see code below
Setup Variable
<?php
$customergroup = $product['product_id'] ;
?>
Run Through The Code
<?php
if ($customergroup == "1" || $customergroup == "2")
{
?>
first content if variable is/equals 1
<?php } else { ?>
Second content if variable is/equals 2
<?php } ?>
I have tried the code below in the filter and added the "else" in each break
($customergroup == "1" || $customergroup == "2" || $customergroup == "3" || $customergroup == "4")
But could not get it to echo content based on variable also have had to add a space in the =="2 " before to get the "2" section to echo the content even though the variable echos with no space
Any help appreciated
cheers
ifblock. One condition per value, e.g.,1 ... 2, is what you seem to want. Or aswitchor some other construct. – Jared Farrish Dec 27 '12 at 12:35