Hey can U help me with the following?
I would like to send basic data (like a set of integers & strings) from
one php function to another php function.
Sounds easy, However, the functions are located on a different computer.
Or, said differently, I would like to use
function oncomp1($intege r1, $string1, $string2)
{
// ...
//string3 = function of string2
//<-- call oncomp2($string 1,$string3,$int eger1);
}
where function oncomp1 is on computer 1, and oncomp2 is on computer 2.
What to do?
The strings can be to long (a few kb) to pass it simply in the URL.
However WDDX is heavily overkill, because u need to compile php with
--enable-wddx to use those functions. And WDDX do not cover communnication.
Greetings,
Edwin
I would like to send basic data (like a set of integers & strings) from
one php function to another php function.
Sounds easy, However, the functions are located on a different computer.
Or, said differently, I would like to use
function oncomp1($intege r1, $string1, $string2)
{
// ...
//string3 = function of string2
//<-- call oncomp2($string 1,$string3,$int eger1);
}
where function oncomp1 is on computer 1, and oncomp2 is on computer 2.
What to do?
The strings can be to long (a few kb) to pass it simply in the URL.
However WDDX is heavily overkill, because u need to compile php with
--enable-wddx to use those functions. And WDDX do not cover communnication.
Greetings,
Edwin
Comment