jayo Posted January 19, 2007 Share Posted January 19, 2007 I've this code:<?php$coi = new COM("Coi4ImplP.Coi4"); $empresas = $coi->Inicio("C:\Archivos de programa\ASPEL\ASPEL-COI4.0"); $hresult=$coi->Empresa("2");$ruta=$coi->Ruta;echo "$coi->Ruta<br>";echo "$coi->Niveles<br>";echo "$coi->Nombre<br>";echo "$coi->Tipos<br>";echo "$coi->Version<br>";echo date("d/m/Y");//date("Y-m-d");echo "\n";echo "$ruta<br>";print '<pre>\n';print_r($coi);print '</pre>\n';function rcuenta($vale){echo "hola".$vale;echo "<br>";}?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head> <title>Otro ejemplo relacionando variables php</title></head><body> <?php echo "$coi->Ruta<br>"; ?> <?php echo "rcuenta(\"HOLA\")<br>"; ?> <?php rcuenta("OTRO"); ?> <?php echo "<br>"; ?> <input type="text" name="ruta" size="10" value="<?php echo$ruta;?>"> <input type="button" value="REGISTRA" name="Registra"onclick="limpia()"><br /><script language="javascript" type="text/javascript">function limpia(){alert($ruta);}</script></body></html>The output:C:\Coi\Fycampo\HUGO\Datos\4 3 3 3FYCAMPO S.A DE C.VDr Ig EgSERVIDOR COIW4, VERSION 1.0 PARA FYCAMPO, S.A. DE C.V.19/01/2007 C:\Coi\Fycampo\HUGO\Datos\\ncom Object\n C:\Coi\Fycampo\HUGO\Datos\rcuenta("HOLA")holaOTROin the input box is the variable $ruta, that's OK, but when I press thebutton 'REGISTRA' the page gets an error.How can I get in a javascript function a Com variable like this?Thank you in advance. Link to comment https://forums.phpfreaks.com/topic/34922-com-object-with-php-how-to-use-here-is-the-code/ Share on other sites More sharing options...
printf Posted January 19, 2007 Share Posted January 19, 2007 [code]<script type='text/javascript'>function limpia(){ alert(document.getElementByName('ruta').value); return;}</script></body>[/code] Link to comment https://forums.phpfreaks.com/topic/34922-com-object-with-php-how-to-use-here-is-the-code/#findComment-164673 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.