open up your manage_bid.php file
replace this
Code:
<td><span class="style80">Delete</span></td>
<td class="style80">New Bid </td>
</tr>
<?php do { ?>
with this
Code:
<td><span class="style80">Delete</span></td>
<td class="style80">New Bid </td>
</tr>
<?php if (empty($row_BIDLIST['dtu'])){
echo '<tr class="tr_bottom"><th colspan="11" align="center">youcurrently have no bids</th></tr>';
}else {
do { ?>
and then go down and replace this
Code:
<?php } while ($row_BIDLIST = mysql_fetch_assoc($BIDLIST)); ?>
with this
Code:
<?php } while ($row_BIDLIST = mysql_fetch_assoc($BIDLIST));} ?>
notice the curly bracket at the end of the while that will end the if..else statement. the only error I got was one line saying that i had an sql statement error and I replaced <> with <=> also. You will also notice that n your manage listings that the same error will occur if you do not have any links
Bookmarks