hi, thanks the aboved reply.
I want to add some words for the question. The below is the source for the img display script(showimg.php) :
<?php
$username = "root";
$password = "";
$hostname = "localhost";
mysql_connect() or die("System error: Failed connecting to DataBase");
mysql_select_db("example") or die("System error: Unable to select database");
$query = "select img, imgtype from imgtable where img_name='example'";
$result = mysql_query($query );
$row = mysql_fetch_object($result);
Header( "Content-Type:".$row->imgtype);
echo $row->img;
mysql_close();
My question is when the image is displayed in a table cell,
the size of them are same, but the image will enlarge
the cell a little and there is a samll space in the cell.
I think it's not border or alignment related problem, so
could someone help me on it??