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
https://forums.phpfreaks.com/topic/32609-solved-an-easy-html-table-question/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.