I know, Here is something wrong in Image Output Section. Please, Help me to correctly show the images to 3rd no. column.
<html>
<head>
</head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<body>
<?php
include ('cont.php');
$result = mysql_query("SELECT * FROM productinput") or die(mysql_error());
echo "<center>";
echo"<table width='500' border='1' cellspacing='0' cellpadding='0'>";
echo" <tr>";
echo" <th>Brand</th>";
echo" <th>Model</th>";
echo" <th>Image</th>";
echo" <th>Description</th>";
echo" <th>Price</th>";
echo" </tr>";
while ($row=mysql_fetch_array($result))
{
echo "<tr>";
echo "<td>";
echo $row['brand'];
echo "</td>";
echo "<td>";
echo $row['model'];
echo "</td>";
echo "<td>";
echo $row['image'];
echo "</td>";
echo "<td>";
echo $row['descr'];
echo "</td>";
echo "<td>";
echo $row['price'];
echo "</td>";
echo "</tr>";
}
echo "</table>";
echo "</center>";
?>
</body>
</html>