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.
<ul class="selectplanparagraph">
<li>
    <h3><?php echo $comparetxt[0][0]; ?></h3>
    <img width="280" height="80" src="<?php echo $comparetxt[0][1]; ?>" alt="">
    <p><?php echo $comparetxt[0][2]; ?></p>
</li>
<li>
    <h3><?php echo $comparetxt[1][0]; ?></h3>
    <img width="280" height="80" src="<?php echo $comparetxt[1][1]; ?>" alt="">
    <p><?php echo $comparetxt[1][2]; ?></p>
</li>
<li>
    <h3><?php echo $comparetxt[2][0]; ?></h3>
    <img width="280" height="80" src="<?php echo $comparetxt[2][1]; ?>" alt="">
    <p><?php echo $comparetxt[2][2]; ?></p>
</li>
<!-- End .selectplanparagraph --></ul>

I would like to loop this instead of having 3 LI with hardcoded positions in array, I'd prefer to make a simple loop. I tried but I failed. This loops with arrays are more complicated than I thought :) at least for me beginner :)

array looks like this:

$comparetxt = [ 
    [ "Title 1", "url 1", "text 1" ],
    [ "Title 2", "url 2", "text 2" ],
    [ "Title 3", "url 3", "text 3" ]
];
share|improve this question
use PHP foreach : php.net/manual/en/control-structures.foreach.php – Onheiron Jul 12 '12 at 9:57
4  
lovely new array syntax – yes123 Jul 12 '12 at 9:58
Can you at least post the code you tried? – Jon Taylor Jul 12 '12 at 9:58
@yes123 I read php manual just today and instantly fell in love. So clean. – Sandro Dzneladze Jul 12 '12 at 10:19

3 Answers

up vote 1 down vote accepted

First of all it seems like your array notation is wrong. Try this

<?php
$comparetxt = array(
    array('title' => 'Title 1', 'url' => 'www.google.com', 'text' => 'text 1'),
    array('title' => 'Title 2', 'url' => 'www.google.com', 'text' => 'text 2'),
    array('title' => 'Title 3', 'url' => 'www.google.com', 'text' => 'text 3')
);
?>
<ul class="selectplanparagraph">
<?php foreach($comparetxt as $compare) { ?>
<li>
<h3><?php echo $compare['title']; ?></h3>
<img width="280" height="80" src="<?php echo $compare['url']; ?>" alt="">
<p><?php echo $compare['text']; ?></p>
</li>
<?php } ?>
</ul>
share|improve this answer
2  
Actually, I think the array syntax is the new PHP short array syntax added in 5.4.0. Here is some more info: https://wiki.php.net/rfc/shortsyntaxforarrays. – Edd Slipszenko Jul 12 '12 at 10:05
1  
That's pretty cool, had no idea about that! – Andy Jul 12 '12 at 10:07

Is this what you're after?

foreach($comparetxt as $compareitem) {
    ?>
    <li>
    <h3><?php echo $compareitem[0]; ?></h3>
    <img width="280" height="80" src="<?php echo $compareitem[1]; ?>" alt="">
    <p><?php echo $compareitem[2]; ?></p>
    </li>
    <?php
}
share|improve this answer

Try this

foreach ($a as $v1) {
    foreach ($v1 as $v2) {
        echo "$v2\n";
    }
}
share|improve this answer
If you write a block of code, it's better to indent each line with 4 spaces to have a better rendering. Check my edit. – j0k Jul 12 '12 at 14:48
thanks man, I'm new i didn't understand how to first! – najk Jul 13 '12 at 7:57

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.