>Could somebody please advise how they should be installing the .dll file so >I can utlize the gd_libraries with php? >
You only have to contact your ISP if he uses the PHP ISAPI extension (which is not very probable). Try to put the following code at the top of your script, if possible, use php_gd2.dll instead of php_gd.dll (which will be removed in 4.3.2+ versions): if (!extension_loaded('gd')) { if (!dl('php_gd.dll')) { die ('Could not load gd extension'); } } -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php