[PHP] Images On-Fly

2003-12-03 Thread Dejan Dujak
Hallo People, I have one problem with creating images on-fly. Therefore I created 2 files: 1. resize_image.php with the following ?php if (!$max_width) $max_width = 150; if (!$max_height) $max_height = 100; $size = GetImageSize($image); $width = $size[0]; $height = $size[1]; $x_ratio

[PHP] Re: Images On-Fly

2003-12-03 Thread Dejan Dujak
My entire page will then not work. Apperently it contains then error. If i do delete that part of the php code it works just fine. Dejan Dujak [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hallo People, I have one problem with creating images on-fly. Therefore I created 2