I need to ping that URL and receive response:
http://test.cellpay.com.np:8181/cellcom?FN=123&fromMobile=01670746301&phoneNumber=01970746301&PIN=1234567890&amount=0
The response is in XML. I am trying to read the response using PHP. if I use:
file_get_contents($url);
it shows:
file_get_contents(): http:// wrapper is disabled in the server configuration by allow_url_fopen=0
if I use:
file_get_contents($url);
it shows:
bool(false)
Uncaught exception 'Exception' with message 'String could not be parsed as XML'
I don't know what to do, please help me.
Thanks.