function imageresize($var,$width,$height)
{
preg_match_all('#\[ img\](.+)\[ /img\]#U', $var, $matches);
$search = array('[ img]','[ /img]');
$replace = array('','');
for($i=0;$i < count($matches);$i++)
{
$imgsize = getimagesize($matches[1][$i]);
if($imgsize[0] < $width && $imgsize[1] < $height)
{
return '<img src="'.$matches[1][$i].'" width="'.$imgsize[0].'" wanda="'.count($matches).'">';
}
else if($imgsize[0] > $width && $imgsize[1] < $height)
{
return '<img src="'.$matches[1][$i].'" width="'.$width.'">';
}
else if($imgsize[0] < $width && $imgsize[1] > $height)
{
return '<img src="'.$matches[1][$i].'" height="'.$height.'">';
}
else if($imgsize[0] > $width && $imgsize[1] > $height)
{
return '<img src="'.$matches[1][$i].'" height="'.$height.'" width="'.$width.'">';
}
}
}