Re: another PHP-Revlet question

2009-08-30 Thread Yves COPPE
Le 30-août-09 à 00:50, Sivakatirswami a écrit : Yves: I second Dave's idea. Are you sure "it" does not have what you need: POST tUploadData to url tURL put it into tServerResponse I use this a lot... (not tested in revlet) Christian Langers wrote: Hi Yves, may it be : put "http://www.mo

Re: another PHP-Revlet question

2009-08-29 Thread Sivakatirswami
Yves: I second Dave's idea. Are you sure "it" does not have what you need: POST tUploadData to url tURL put it into tServerResponse I use this a lot... (not tested in revlet) Christian Langers wrote: Hi Yves, may it be : put "http://www.mondomaine.com/myfunctionfile.php?var="&urlencode(

Re: another PHP-Revlet question

2009-08-29 Thread Christian Langers
Hi Yves, may it be : put "http://www.mondomaine.com/myfunctionfile.php?var="&urlencode(tVar) into tURL put URL("File:"&tURL) into myNewVar using $_GET["var"] in PHP and echo the result ? Greets, Christian On 29/08/09 20:55, Yves COPPE wrote: Le 29-août-09 à 20:15, Pierre Sahores a écri

Re: another PHP-Revlet question

2009-08-29 Thread Ian Wood
One approach would be to save the function as a PHP file, then have something like: put URL ("http://yourserver.com/script.php?targument) into tResult Not tested but it should work. Ian On 29 Aug 2009, at 18:20, Yves COPPE wrote: Hi list I have a PHP function which needs an argument and

Re: another PHP-Revlet question

2009-08-29 Thread Dave Cragg
On 29 Aug 2009, at 19:55, Yves COPPE wrote: for a php command, I use put "myVar=" & urlEncode(fld "myFld") &"&adresse=" & urlEncode(tadresse) into myString post myString to URL "http://www.mondomaine.com/codefile.php"; for a function I write put "http://www.mondomaine.com/myfunctionfi

Re: another PHP-Revlet question

2009-08-29 Thread Yves COPPE
Le 29-août-09 à 20:15, Pierre Sahores a écrit : Hi Yves, Should this help as a starter point (javascript support needed) ? form2.irev : iphplib Type in this field httpr2.php : Please, wait... while (list($header, $value

Re: another PHP-Revlet question

2009-08-29 Thread Pierre Sahores
Hi Yves, Should this help as a starter point (javascript support needed) ? form2.irev : iphplib Type in this field httpr2.php : Please, wait... while (list($header, $value) = each($_POST)) $exAE .= "$header= $value&"; ec

another PHP-Revlet question

2009-08-29 Thread Yves COPPE
Hi list I have a PHP function which needs an argument and this PHP function returns an answer How can I post an argument to a PHP function and recover the return value of the PHP function ? The classic post command doesn't give the answer in a rev variable Thanks. Greetings. Yves COPPE