On dinsdag 2 december 2003 3:40 Dimitri Marshall told the butterflies:
> Hi there,
> I've seen the code somewhere but can't remember what it is exactly.
> Basically I need to know what the PHP is to get the picture
> width and height.
>
> I tried:
>
> $pic = $_FILES[$objectNumber];
> $w
Hello Dimitri,
Tuesday, December 2, 2003, 2:40:27 AM, you wrote:
DM> I've seen the code somewhere but can't remember what it is exactly.
DM> Basically I need to know what the PHP is to get the picture width and
DM> height.
Use getimagesize() on the uploaded file. See PHP manual for details.
--
Hi there,
I've seen the code somewhere but can't remember what it is exactly.
Basically I need to know what the PHP is to get the picture width and
height.
I tried:
$pic = $_FILES[$objectNumber];
$width = $pic['width'];
$height = $pic['height'];
... with no success.
Any help is g
3 matches
Mail list logo