I'm using PHP Version 5.2.5 on a WinXP machine.
When I use
<?php
var_dump(gd_info());
print_r(gd_info());
?>
I get the following message:
Fatal error. Call to function gd_info() in ... etc.
What am I doing wrong?:queasy:
I'm using PHP Version 5.2.5 on a WinXP machine.
When I use
<?php
var_dump(gd_info());
print_r(gd_info());
?>
I get the following message:
Fatal error. Call to function gd_info() in ... etc.
What am I doing wrong?:queasy:
Most likely you do not have the GD extension installed and enabled.
Sounds like you don't have the GD library installed.
Perhaps you'll find out more here...
Cheers,
NRG
Doh! Nog beat me to it by a minute!
NogDog;10881226 wrote:Most likely you do not have the GD extension installed and enabled.
I thought so. Now how do I do all that? I've already downloaded the GD library.