Hi,
I want to display my database records in <ul> <li> format. I have using a free template to design my front end. I am reading database data like this
while ($row = mysql_fetch_assoc($result)) {
$categoryname = $row['category_name'];
}
and within the loop i have to display records like this
<li class="odd"><a href="services.html">Processors</a></li>
<li class="even"><a href="services.html">Motherboards</a></li>
<li class="odd"><a href="services.html">Processors</a></li>
<li class="even"><a href="services.html">Motherboards</a></li>
<li class="odd"><a href="services.html">Desktops</a></li>
<li class="even"><a href="services.html">Laptops & Notebooks</a></li>
<li class="odd"><a href="services.html">Processors</a></li>
<li class="even"><a href="services.html">Motherboards</a></li>
</ul>
i am not able to display like this. please help me...