<?php
$query=mysql_query("SELECT model_no,images1 FROM nokia");
echo"<div>";
while ($img = mysql_fetch_array($query))
{
echo $img[0];
echo "<img src = cms/pages/images/".$img[1].">";
}
echo"</div>";
?>
what is actually wrong in my code.. its not displaying images($img[1]) but it displays the content 'model_no' ie. $img[0]. plz any sugesstion would be greatly helpful...