Ver Mensaje Individual
  #7 (permalink)  
Antiguo 16/02/2005, 10:32
Avatar de abe_k
abe_k
 
Fecha de Ingreso: diciembre-2004
Mensajes: 286
Antigüedad: 19 años, 4 meses
Puntos: 2
y eso

holas,

Tengo un fichero .php donde:

Código:
$contente="<script language='javascript' src='selectphp.php'></script>";
echo $contente;
en selectphp.php tengo todo el código javascript:

ej:
$php_contente="function Obj( contextID ){";

// properties
$php_contente.="this.id = contextID;";
$php_contente.="this.busy = true;";
$php_contente.="this.callback = null;";
$php_contente.="this.container = contextCreateContainer( contextID );";

// methods
$php_contente.="this.GET = contextGET;";
$php_contente.="this.POST = contextPOST;";
$php_contente.="this.getPayload = contextGetPayload;";
$php_contente.="this.setVisibility = contextSetVisibility;
}";

echo "document.write('".$php_contente."')";

ASi es como lo hago. Alguna ayuda??

abe_k