I\'m having a lot of confusions on how to set up PHP SOAP extension in windows based on what\'s on the net.
Could you please help me, how would I be able to do it?
Referring to the PHP docs, all you need to do is:
php.ini
file. This is normally under your
folder (for example, C:/PHP5
).;extension=php_soap.dll
, by removing the first ;
character, to make it looks like extension=php_soap.dll
Note that the php_soap.dll
is included in the default PHP5 distribution, and you can find it under the
folder.
Hope this helps.