[PHP-DB] Webservices with PHP

2008-01-09 Thread $P$ $T$
Hi, Sorry this may not be related to php-db list. I do not have much knowledge about webservices but would like to know, which is better way of implementing webservices with PHP-MySQL XML-RPC, SOAP, or REST And why? What are the parameters that we should be looking for before deciding on mechanis

Re: [PHP-DB] Webservices with PHP

2008-01-09 Thread dani_wafaul_falah
so far i know, if u want to use web service with php and mysql, i suggest u use soap, because native php support this kind of webservice (php-soap), u can use function based service for this kind of webservice and also because of soap is XML-RPC with a lot of feature.(http://en.wikipedia.org/wiki/W

[PHP-DB] forms and method POST - variables

2008-01-09 Thread Lukáš Moravec
Hi, I have one question about forms and php (which I use for Mysql too). Do I need for variables from any form in html and method POST (then in php script) to set these variables with: $variable=$_POST['variable']; For example: FORM Input something And then.in d

RE: [PHP-DB] forms and method POST - variables

2008-01-09 Thread Miguel Guirao
Well, it depends if you use an old version of PHP, in the latest version both arrays $_POST and $_GET are used to get passed variables!! I can't remember since what version PHP started to use these arrays!! MG -Original Message- From: Lukáš Moravec [mailto:[EMAIL PROTECTED] Sent: Miércole

Re: [PHP-DB] forms and method POST - variables

2008-01-09 Thread Daniel Brown
On Jan 9, 2008 11:25 AM, Lukáš Moravec <[EMAIL PROTECTED]> wrote: > Hi, > > I have one question about forms and php (which I use for Mysql too). > > Do I need for variables from any form in html and method POST (then in php > script) to set these variables with: > > $variable=$_POST['variable']; [s

Re: [PHP-DB] Webservices with PHP

2008-01-09 Thread Evert Lammerts
SOAP stands for Simple Object Access Protocol and is, as its name implies, a protocol for accessing objects or in other words, a standard that defines how a possibly remote object can be communicated with. XML-RPC, with RPC standing for Remote Procedure Call, is a protocol to call remote proced

Re: [PHP-DB] forms and method POST - variables

2008-01-09 Thread Chris
Because I got some old scripts where I don´t have this setting.they worked on MS Win2000 - PWS and PHP 4.0 but now - with Apache 2.2.6, PHP 5.2 on WIN XP it doesn´t work. You might be using the old format of $HTTP_POST_VARS. Do a search for that string and change it to $_POST and the same f