Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using the following structure for my foreach how would I use an if statement within the same format?

<?php foreach($property as $section):?>


    if(!empty($section))
    {
      echo <p>data here </p>;
    }else{
      html
    }

<?php endforeach;?>
share|improve this question
"within the same format" - what does that mean? – Sergio Tulentsev Jan 25 at 8:05
@SergioTulentsev using the endforeach and : – Jess McKenzie Jan 25 at 8:06

6 Answers

up vote 3 down vote accepted
<?php foreach($property as $section):
    if(!empty($section)):
      echo "<p>data here </p>";
    endif;
endforeach;?>

OR

<?php foreach($property as $section):
    if(!empty($section)):
      echo "<p>data here </p>";
    else:
       echo "html";
    endif;
endforeach;?>

See: Alternative Syntax

share|improve this answer
fixed open/close tags and echo quotes – nico gawenda Jan 25 at 8:19
@nicogawenda thanks... :) – Sudhir Jan 25 at 8:23

Not sure what you mean, but you don't have valid php.

foreach($property as $section) {
    if(!empty($section))
    {
      echo '<p>data here </p>';
    }else{
      echo 'html';
    }
}
share|improve this answer

I think you are looking for this.

<?php foreach($property as $section): ?>
    <?php
        if(!empty($section)) :
            echo <p>data here </p>;
        else :
            html
        endif;
endforeach; ?>
share|improve this answer

I think best solution for this is:

<?php
foreach($property as $section) {
    if(!empty($section))
    {
        echo '<p>data here </p>';
    }
    else
    {
        ?>
        <div id="dosome">really crazy html stuff here</div>
        <?php
    }
}
?>
share|improve this answer

This is an example containing }elseif{ also:

<?php foreach($property as $section):?>

<?php    if(!empty($section)): ?>

      <p>data here </p>

<?php   elseif ([another condition]): ?>

      ...

<?php   else: ?>

      html

<?php   endif: ?>

<?php endforeach;?>

The entire documentation is here: http://php.net/manual/en/control-structures.alternative-syntax.php

share|improve this answer

SHORTHAND :

<?php foreach($property as $section):?>
    <?php if(!empty($section)):?>
      <p>data here </p>;
    <?php else: ?>
      html
    <?php endif;?>
<?php endforeach;?>

OTHER:

<?php foreach($property as $section)
 {
   if(!empty($section))
   {
     echo '<p>data here </p>';
   }else{
       echo 'html';
   }
 }
?>
share|improve this answer
echo without quotes? – Antony Jan 25 at 8:13
@Antony, :)) thanks updated – tomexsans Jan 25 at 8:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.