When I execute file in mremote, then it shows this warning:
PHP Warning: PHP Startup: Unable to load dynamic library '/usr/lib64/php/modules/php_soap.dll'
When I execute file in mremote, then it shows this warning:
PHP Warning: PHP Startup: Unable to load dynamic library '/usr/lib64/php/modules/php_soap.dll'
Go TO php.ini file:
extension_dir = "\xampp\php\ext"
browscap = "\xampp\php\extras\browscap.ini"
to(add your xampp path )
extension_dir = "D:\xampp\php\ext"
browscap = "D:\xampp\php\extras\browscap.ini"
In my experience, you can get the 'Unable to load dynamic library' message for a couple of different reasons:
In your case, it looks like scenario #2 applies. Based on the path/filename you've posted, it looks like you are trying to load a Windows .dll version of the extension on a Unix-like architecture.
With the brief information you've given I'm not sure I can help much more than that, but hopefully the above pointers should help you diagnose the problem a bit better.