Pesho Posted January 2, 2007 Share Posted January 2, 2007 Hi all,I just can't figure out why my table width doesn't change no matter what width parameter I set. I fill the second column with long text info and its right part is displayed a bit trimmed. I tried to reduce the width of the table but didn't succeed. I'm not good at HTML, so I'd be very grateful if you suggest which attribute to change...here is my code:[code]<?phpinclude("mysql_connect.php");include("header.php");?><br><h3>Quote Repository</h3><p><table width="300" align="LEFT" border="1" cellspacing="0" cellpadding="2"> <?php $query = "SELECT * FROM AnnieQuotes WHERE 1"; $result = mysql_query($query); if(!$result) { echo "Sorry, no quotes available."; } else { echo ' <tr> <td>User:</td> <td>Quote:</td> </tr> '; while($array = mysql_fetch_row($result)) { echo ' <tr> <td>'.$array[1].'</td> <td>'.$array[2].'</td> </tr> '; } } ?></table> </p><?phpinclude("footer.php");?>[/code] Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.