Ver Mensaje Individual
  #1 (permalink)  
Antiguo 08/08/2011, 07:46
hola123
 
Fecha de Ingreso: febrero-2009
Mensajes: 142
Antigüedad: 15 años, 3 meses
Puntos: 0
codigo PHP en JSP

Hola amigos,

Sabes como poner codigo php en un jsp, me urge tengo esto pero no funciona.

<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">

<HTML>
<HEAD>
<body>
<?php
echo $solmetraUploader->getInstance('secondFile', // name of the field
200, // width
220, // height
false, // not required - allow form to be submitted
true, // hijack form (recommended)
'demo/custom.xml', // let's use different front-end config file than specified in the config.php
// (please note that this URL is relative to this demo file)
true // embed config (this will load front-end configuration XML file and embed it in the HTML)
);
?>

</body>
</head>
</html>