<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" ]
];