Jump to content

Multiple if statements


greens85

Recommended Posts

Hi all,

 

I currently have an IF statement like so:

 

<?php
if ($a4[AA] == 'Yes')
    	{
    		 ?><font color="#990000"><?echo "Some Text"?><font> 
   <? } else {
    		echo "";
    }
?>

<?php
if ($a4[AB] == 'Yes')
    	{
    		 ?><font color="#990000"><?echo "Another line of text"?><font> 
   <? } else {
    		echo "";
    }
?>

 

This works perfectly fine, although its a bit long winded, is there any way i can incorporate this all into one if statement, and have the text seperated by a comma. There are 8 different fields that could be equal to 'Yes'.

 

Thanks

Link to comment
Share on other sites

<?php
$textarr = array('AA'=>'Some Text', 'AB'=>'Other text', ..... 'AH'=>'Last Text');
foreach($a4 as $key => $val)
{
if(strcasecmp($val,'yes'~) == 0)
{
?>
<font color="#990000"><?php echo $textarr[$key]; ?><font>
<?php
}
}
?>

 

the textarr could be populated from a database but I get the impression that this could be refactored maybe in favour of a switch statement....

Link to comment
Share on other sites

You just need to throw the comma in the quotes...

 

<?php
$textarr = array('AA'=>'Some Text,', 'AB'=>'Other text,', ..... 'AH'=>'Last Text');
foreach($a4 as $key => $val)
{
if(strcasecmp($val,'yes'~) == 0)
{
?>
<font color="#990000"><?php echo $textarr[$key]; ?><font>
<?php
}
}
?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.