hi does any one know why this code won't display my links
<div id="columnRight"><div id="innerColumnRight">
<div class="marginBox">
<h1>Second Menu</h1>
<!-- Vertical Navigation Start -->
<div id="navVertical">
<ul>
<?php do { ?>
<?php
echo '<li><a href="'. $row_website_domain['website_domain'] . 'content.php?id=' . $row_side_bar['id'] . '">' . $row_side_bar['title'] . '</a></li>';
?>
<?php } while ($row_side_bar = mysql_fetch_assoc($side_bar)); ?>
<?php if(isset($_SESSION['MM_Username'])){
do {
echo '<li><a href="'. $row_website_domain['website_domain'] . 'content.php?id=' . $row_side_bar_client['id'] . '">' . $row_side_bar_client['title'] . '</a></li>';
} while ($row_side_bar_client = mysql_fetch_assoc($side_bar_client));} ?>
</ul>
</div>
<br />
there is says row side bar that display but where it says row_side_bar_client these wont display and i dont don't now why
thanks alot