Jump to content

[SOLVED] an easy HTML Table question


Pesho

Recommended Posts

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]
<?php
include("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>

<?php
include("footer.php");
?>

[/code]
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.