I’m trying to fetch items from an array. So here’s what my list look like.
Here’s what my items look like
fruits[apple] = 'apple';
fruits[grapes] = 'grapes';
fruits[banana] = 'banana';
animals[dog] = 'dog';
animals[cat] = 'cat';
....
and my loop should look something like this.
<ul>
<li> <a href="fruits/<?php echo $fruits ?>"><?php echo $fruits ?></a> </li>
</ul>
Simples!
You can do the same with animals too…