Jump to content

Picture


shage

Recommended Posts

Something like:

 

picture.php?w=4&h=3

 

//Get the width (4)
$width = $_GET['w'];
//Get the height (3)
$height = $_GET['h'];
//Calculate the ratio (4/3)
$ratio = $width / $height;

 

Maybe this will point you in some direction, but you need to be more specific if you want more specific help. It's hard to guess if you want to resize the images with PHP/GD Lib or just want to set the height/width attributes in a html <img>-tag ect...

Link to comment
https://forums.phpfreaks.com/topic/56834-picture/#findComment-280837
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.