Hi there guys
Basically im trying to call images from my SQL DB (which is fine)
and im trying to echo them out using a while loop (which is also fine)
<?php
$getSize = mysql_query("SELECT image_location FROM size_chart WHERE prod_size_id = $GET_ID");
while($chart = mysql_fetch_array($getSize))
{
?>
<a href="<?php echo $chart ?>"><img src="<?php echo $chart ?>" width="200px" height="200px" /></a>
<?php
}
?>
So in turn my results display 200 x 200 images of whatever im trying to call from my DB
However i wish to display it as that from my array loop, i wish for the first picture to be 200 x 200 then the rest are 100 x 100
If anyone can please help me i would be most grateful
Thank You