Posted by Steve on 01/18/07 23:35
"JAYO" <jayo999@gmail.com> wrote in message
news:1169161230.507761.303490@38g2000cwa.googlegroups.com...
|I have a COM Server that create an object with PHP, then from the html
| input sentence using onchange, goes to a javascript function, as
| parameter the input value, within this value i want to get from the COM
| Server an answer. From PHP the object is created with new, as:
| $coi = new COM("Coi4ImplP.Coi4");
| and I can get from the server the answer as:
| $hresult=$coi->Empresa($_POST["empresa"]);
| $ruta=$coi->Ruta();
| $niveles=$coi->Niveles();
| $nombree=$coi->Nombre();
| but in the input area from the html page in the from like:
i can't understand your english. just do this:
$coi = new COM("Coi4ImplP.Coi4");
print '<pre>\n';
print_r($coi);
print '</pre>\n';
then post the output back here.
[Back to original message]
|