I'm sure that this is a really simple question for some..
Here is some PHP used in Yahoo Open Search:
$ret['image']['src'] =
"http://static.move.com/move/images/icons/move-avatar-logo.jpg";
The problem is that the image is 88x88 pixels and needs to be 75x75
pixels to fit. I don't want to wait to have our engineering department
upload a smaller image that is the right size and am trying to find
out if there is any PHP code that I should add underneath that will
just make the image the right size?
Or another way to rephrase this question would be..what is the PHP
equivalent to the HTML version below:
img src="http://www.example/anyimage.jpg" height="50" width="50"
?
THANKS....
.