Forum Moderators: coopster
$width = 440;
$height = 530;
$newwidth=200;
$ratio = $newwidth/$width;
$newheight = ($ratio * height);
This prints 0 for $newheight, when it should return 238.5, or at least 239 following round.
Can anyone answer this for me please? Thanks.