Hello,
on my profile site where users have there profile picture, how do i make it a default size so even if the image is veyr big it will not distort the page, for example as of right now an image that is to big is doing this to the page
http://www.hotclubber.com/memberinfo.php?id=36
This is the coding around the image area including the table tag
PHP Code:
<td width="350" align="center"><?php
if ($row['size']>0)
{
?>
<img src="image1.php?id=<?php echo $row['urid'];?>" border="0" />
<?php
}
else
{ ?>
<img src="images/comingsoon.gif" width="100" height="100" />
<?php
} ?></td>
if someone can suggest something, i have my old developers telling me there gonna use java to solve this but htat doesnt really make sense. Anyone know any php code or something to solve this.