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?

link|improve this question
1  
You mean simple http requests? – KingCrunch Jun 10 '11 at 20:14
feedback

2 Answers

  1. Setup a script on websiteB that handles a POST request (e.g. a string).

  2. Use cURL or sockets on websiteA to send POST data (e.g. a string) to websiteB

link|improve this answer
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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.