http://www.orangeinteractivehosting.com/Tester/
My bulleted list of categories being called from my database isnt showing the last link.. if I add another category it will show the 3rd but not the 4th.. etc etc.. anyone know what im doing wrong?
Here is my code:
My bulleted list of categories being called from my database isnt showing the last link.. if I add another category it will show the 3rd but not the 4th.. etc etc.. anyone know what im doing wrong?
Here is my code:
HTML:
<div style="position:relative; left: 40px; top: 10px; width: 159px; overflow:inherit; z-index: 200;">
<p id="navhead">CATEGORIES</p>
<ul class="navlist">
<?php
for($i=0;$i<count($catArray);$i++):?>
<li class="navitem">
<a href="index.php?cat=<?=$catArray[$i]?>"><?=$catArray[$i]?></a></li>
<?php endfor; ?>
</ul>
<br><br>
<?
include("xxx");
$sql = "SELECT * FROM content WHERE content_id = '5'";
$result = mysql_query($sql);
$data = mysql_fetch_array($result);
echo"
<div class= 'links'>
$data[content_text]
</div>
";
?></div>





