2
On my software download site, there are images of various sizes, for example: for each program there is an image (thumbnail), a large image and screenshots.
Only I want to make the images all the same size and the url pass the size I want of the image. Something like: uploads/imagens/imagen-teste.jpg?w=500&h=500
. If I want the same image in another size, I would only pass the value by the url, so: uploads/imagens/imagen-teste.jpg?w=100&h=100
.
How can I do this? Or is there a plugin that does this?
if you already have the script, and use a function that accepts external parameters, you can call the function as follows on your php 
 page;
function alteraDimensoes(width, height)
would look like this:function alteraDimensoes(<?= img["width"] ?>,<?= img["height"] ?>)
But remember to use GET– Murilo Melo