First tell PHP which directory contains the extensions by adding this
to your php.ini file:
extension_dir = C:\php\extensions; path to directory containing php_xxx.dll
Then explicitly load the module with a line like this in the
php.ini file:
extension=php_gd.dll; Add support for Tom Boutell's gd graphics library
You can determine what extensions are available for your particular
version by looking in the extensions directory
of your distribution.
Once you have made these changes, restart your server and check the
output of phpinfo( ) to confirm that the extension
has been loaded.