Jump to content

bolin

New Members
  • Posts

    2
  • Joined

  • Last visited

bolin's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. bolin

    php image resize

    Hey Everyone can you help me with this script am i missing something how come it doesnt resize hope you can help thanks <?php function imageResize($width, $height, $target) { if ($width > $height) { $percentage = ($target / $width); } else { $percentage = ($target / $height); } $width = round($width * $percentage); $height = round($height * $percentage); return "width=\"$width\" height=\"$height\""; } ?> <?php $myimage = getimagesize("images/cefasitelarge.jpg"); ?> $myimage[1], 150); ?>/>
  2. File upload succeeded... Sent: <?php echo $_FILES['file']['name']; ?> Size: <?php echo $_FILES['file']['size']; ?> bytes Type: <?php echo $_FILES['file']['type']; ?> Click here to view file
×
×
  • Create New...