hihi
is there any way to send simple string
from websiteA.com -to-> websiteB.com with php
where websiteB.com "listens"(as not knowing the existence of websiteA.com) any incoming simple strings sent and recives it?
|
hihi is there any way to send simple string from websiteA.com -to-> websiteB.com with php where websiteB.com "listens"(as not knowing the existence of websiteA.com) any incoming simple strings sent and recives it? | |||||
feedback
|
| |||
|
feedback
|
|
Very very simple vay is to use "rest api" - eg. create PHP file, which will recieve string and process it , and return XML / JSON ... or other formatted ( or unformatted ) answer. Client site ( eg. A ) just need to fopen ( or send request using cURL ) this php file with approtiate string More complex way is to use SOAP - it have standart object in PHP , but it is reccomed to write wsdl file, which is a bit complex. see google for details | |||
|
feedback
|