see those grey boxes in between the "buy now"'s how do I remove those.I want to make it so the "buy now" boxes just stack on top of eachother. They only show up in internet explorer.
here is the code <TABLE border="0" align="center" cellpadding="0" cellspacing="0"> <TR> <TD> <B>Welcome <font color="#CC0000"> <?=ucwords($online)?> </font> <?=$last_name?> </B><br> <B>You have $ <FONT COLOR="blue"> <?=$user_credit?> </FONT> Paid credits.</B> <p> <FONT SIZE="3" >To buy more credits press the <B>Buy Now</B> button.</FONT> <!-- PayPal Logo --><table border="0" cellpadding="10" cellspacing="0" align="center"><tr><td align="center"></td></tr> <tr><td align="center"><a href="#" onclick="javascript:window.open('https://www.paypal.com/us/cgi-bin/webscr?cmd=xpt/cps/popup/OLCWhatIsPayPal-outside','olcwhatispaypal','toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, width=400, height=350');"><img src="https://www.paypal.com/en_US/i/bnr/horizontal_solution_PPeCheck.gif" border="0" alt="Solution Graphics"></a></td></tr></table><!-- PayPal Logo --> <p> <TABLE border=0 cellspacing=1 cellpadding=1> <?php $sql_sel="SELECT * FROM `mybidding_rate`"; $res_sel=mysql_query($sql_sel)or die(mysql_error()); while($row=mysql_fetch_array($res_sel)) { ?> <TR> <TD>$ <?=$row['pound_rate']?> = <?=$row['bid_credit']?> Bid Credit <?php $credits=$row['bid_credit'] ; $pcredits=$credits+$row['free_credit']; $fcredits=$row['free_credit']; $name=$first_name." ".$last_name; $credits_bid_id=$row['bid_id']; if($row['free_credit']!=0) { echo "( +".$row['free_credit']; ?> free) </TD> <TD border="0"> <? $qry="select * from admin_register limit 1"; $re=mysql_query($qry); $res_=mysql_fetch_assoc($re); $paypal_email=$res_['paypal_email'] ; ?> <td bgcolor="F4F3F3"> <form action="paypal.php" method="POST"> <INPUT TYPE="hidden" NAME="business" value="<?=$paypal_email?>"> <INPUT TYPE="hidden" NAME="item_name" value="bid_credit for <?=$first_name?> (<?=$pcredits?>)"> <INPUT TYPE="hidden" NAME="credits" value="<?=$pcredits?>"> <INPUT TYPE="hidden" NAME="id" value="<?=$reg_id?>"> <INPUT TYPE="hidden" NAME="first_name" value="<?=$first_name?>"> <INPUT TYPE="hidden" NAME="last_name" value="<?=$last_name?>"> <INPUT TYPE="hidden" NAME="item_number" value="<?=$credits_bid_id?>"> <INPUT TYPE="hidden" NAME="amount" value="<?=$row['pound_rate'];?>"> <INPUT TYPE="hidden" NAME="credits" value="<?=$credits?>"> <INPUT TYPE="hidden" NAME="fcredits" value="<?=$fcredits?>"> <INPUT TYPE="hidden" NAME="idt" value="<?=$credits_bid_id?>"> <INPUT TYPE="submit" Value="Buy Now" name="submit"> </form> </TD> <?php } else { ?> <TD> <? $qry="select * from admin_register limit 1"; $re=mysql_query($qry); $res_=mysql_fetch_assoc($re); $paypal_email=$res_['paypal_email'] ; ?> <td bgcolor="F4F3F3"> <form action="paypal.php" method="POST"> <INPUT TYPE="hidden" NAME="business" value="<?=$paypal_email?>"> <INPUT TYPE="hidden" NAME="item_name" value="bid_credit for <?=$first_name?> (<?=$pcredits?>)"> <INPUT TYPE="hidden" NAME="credits" value="<?=$pcredits?>"> <INPUT TYPE="hidden" NAME="id" value="<?=$reg_id?>"> <INPUT TYPE="hidden" NAME="first_name" value="<?=$first_name?>"> <INPUT TYPE="hidden" NAME="last_name" value="<?=$last_name?>"> <INPUT TYPE="hidden" NAME="item_number" value="<?=$credits_bid_id?>"> <INPUT TYPE="hidden" NAME="amount" value="<?=$row['pound_rate'];?>"> <INPUT TYPE="hidden" NAME="credits" value="<?=$credits?>"> <INPUT TYPE="hidden" NAME="fcredits" value="<?=$fcredits?>"> <INPUT TYPE="hidden" NAME="idt" value="<?=$credits_bid_id?>"> <INPUT TYPE="submit" Value="Buy Now" name="submit"> </form></td> <?php } } ?> </tr> <TR> <TD><B>Current bids:</B></TD> </TR> <?php if($num_of_bids==0) { ?> <TR> <TD><B>Total: <FONT COLOR="blue">0</FONT> bids / $ <FONT COLOR="red"> <?=$user_credit?> </FONT> Paid Credits</B></TD> </TR> <? } else { ?> <TR> <TD><B>Total: <FONT COLOR="blue"> <?=$num_of_bids?> </FONT> bids / $ <FONT COLOR="red"> <?=$user_credit?> </FONT> Paid Credits</B></TD> </TR> <? } ?> </TABLE> <br> </td> </tr></table> </TABLE> <br> </td> </tr></table> </td> </tr> <tr> <td colspan="2" align="center" valign="top"> <?PHP include "footer.php"; ?> PHP: