Joseph,
Look in the /extensions directory in the distribution archive from ww.php.net. You should see the php_gd.dll file in that directory, if not... go to php.net and grab the full Win32 package (the one that says it has additional extensions) and install it as you installed your current version.
Installation of GD:
- Make sure the extension_dir directive in php.ini points to the folder where your PHP extension live.
- Uncomment the line extension=php_gd.dll in the php.ini file, save the file, and restart your webserver.
OR
- Call the extension directly from your script using dl("php_gd.dll");
HTH.
Cheers,
Geoff A. Virgo