Re: [PHP] Web service in PHP

2006-07-07 Thread Richard Lynch
On Fri, July 7, 2006 3:39 am, Pham Huu Le Quoc Phuc wrote: > I want to build a Web Service in PHP. > Could you give me some explain about this problem. > Have any framework of Web service in PHP? One framework: http://php.net/soap Roll your own framework: http://php.net/sockets -- Like Music? h

Re: [PHP] Web service in PHP

2006-07-07 Thread nicolas figaro
Pham Huu Le Quoc Phuc a écrit : Hi! Hi, I want to build a Web Service in PHP. cool ! Could you give me some explain about this problem. Have any framework of Web service in PHP? could you give us some infos about the "web service" you'd like to build ? Please help me! N F --

[PHP] Web service in PHP

2006-07-07 Thread Pham Huu Le Quoc Phuc
Hi! I want to build a Web Service in PHP. Could you give me some explain about this problem. Have any framework of Web service in PHP? Please help me! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Web Service in PHP/XML

2003-10-26 Thread Dan McCullough
I started writting an install script that would talk to a PHP script on one server while being used on another. So you would have http://www.someserver.com/install.php --> http://www.homesever.com/install.php via CURL without the users knowledge. The script would pass certain variables and if one

Re: [PHP] Web Service in PHP/XML

2003-10-26 Thread Ray Hunter
if you want to use xml and php you can use soap and then you can incorporate other languages as well...making soap the common protocol via http. most languages support soap implementations of one sort. should be worth your time to look into soap. -- Ray On Sun, 2003-10-26 at 12:44, Dan McCull