Re: [PHP] Fw: help please

2002-11-14 Thread Timothy Hitchens (HiTCHO)
Why not put them into an array then look at array functions such as unique checking etc... Timothy Hitchens (HiTCHO) [EMAIL PROTECTED] If you need PHP hosting with an experienced support team 24/7 then email me today. On Fri, 15 Nov 2002, John Fishworld wrote: Hi, I've got some variable

RE: [PHP] FW: Help please!

2002-07-03 Thread joakim . andersson
Hi, Maybe you can do something like this (if you have access to GD on the server): ? $str_image = my_function_to_read_image_from_db($_GET['id']); $im_old = imagecreatefromstring($str_image); $im_new = imagecreatetruecolor($_GET['width'], $_GET['height']); imagecopyresampled($im_new, $im_old, 0,

RE: [PHP] FW: Help please!

2002-07-02 Thread Lazor, Ed
Why would it be quicker on the client-side? I would think you'd go with the first option. That way the layout of your web page is maintained while the image downloads. -Original Message- Do not want img src=getdata.php?id=3 width=100 height=100 WHat I want img

RE: [PHP] FW: Help please!

2002-07-02 Thread Steve Vernon
PROTECTED] |Subject: RE: [PHP] FW: Help please! | | |Why would it be quicker on the client-side? I would think |you'd go with the first option. That way the layout of your |web page is maintained while the image downloads. | |-Original Message- |Do not want |img src=getdata.php?id=3

RE: [PHP] FW: Help please!

2002-07-02 Thread Lazor, Ed
download of a modem... Prefer if server has the load... Steve |-Original Message- |From: Lazor, Ed [mailto:[EMAIL PROTECTED]] |Sent: 02 July 2002 21:34 |To: '[EMAIL PROTECTED]'; [EMAIL PROTECTED] |Subject: RE: [PHP] FW: Help please! | | |Why would it be quicker

RE: [PHP] FW: Help please!

2002-07-02 Thread David Freeman
id 3 from the database. What I really want is to state width is 100 and height is 100 for example so I do not have to downlaod the entire picture and specify the width and height as part of the image: Do not want img src=getdata.php?id=3 width=100 height=100

Re: [PHP] FW: Help please!

2002-07-02 Thread Richard Lynch
What load are you talking about? This is just an issue of telling the web browser the image's dimensions. It's not like the image is being processed to convert it to that image size. Au contraire. If you have an image named 'huge.jpg' at 1 x 1, and you ask a 386 computer to: IMG