Hi, if I compile an extension for php, do I have to recompile the whole PHP source ?
no, you will just need to edit php.ini to load the extension.
extension=my_new_extension.dll
make sure the path of extension directory is set correctly.
Or use the [man]dl()[/man] function.