Hi all,
Very Quick one. In page I have a picture and picture caption echoed to my live site:
<TABLE BORDER="0" CELLSPACING="1" CELLPADDING="1" VSPACE="6" HSPACE="6" BGCOLOR="#CCCCCC" HEIGHT="36"><TR BGCOLOR="#FFFFFF"><TD HEIGHT="12"><?php
$story_id = (int)$_GET['story_id'];
$SQL = "select thumb_name from cms_pictures where story_id = $story_id";
$result = mysql_query($SQL) OR die(mysql_error());
$row = mysql_fetch_row($result);
echo '<img src="../../pictures/big/'. $row[0] .'">';
?> </TD></TR><TR BGCOLOR="#FFFFFF" ALIGN="CENTER"><TD><?php
$story_id = (int)$_GET['story_id'];
$SQL = "select pic_caption from cms_pictures where story_id = $story_id";
$result = mysql_query($SQL) OR die(mysql_error());
$row = mysql_fetch_row($result);
echo "$pic_caption $row[0]";
?></TD></TR></TABLE>
Now this is fine, but the second query outputs the text and stretches the text box past the image, so it looks awkward like so:

Any suggestions please?
Thanks
Chris