Ver Mensaje Individual
  #3 (permalink)  
Antiguo 23/06/2007, 20:05
matias_80
 
Fecha de Ingreso: noviembre-2006
Ubicación: Capital Federal
Mensajes: 141
Antigüedad: 17 años, 5 meses
Puntos: 1
Re: Parametros PHP

Hola !!! gracias por tu ayuda!

Aca copio parte del codigo

esta es la function javascript q lo q hace es abrir un popup

function showLargePhoto(photoName, photoWidth, photoHeight, photoCaption)
{
photoTitle=Client;
if (photoCaption != "")
photoTitle=photoTitle + "%5-%5" + photoCaption
if (window.photo && !(window.photo.closed))
window.photo.close();
var URL=photoName;
var windowWidth=parseInt(photoWidth) + 5;
var windowHeight=parseInt(photoHeight) + 5;
var nTop;
var nLeft;
nTop = (screen.height - photoHeight) / 2
nLeft = (screen.width - photoWidth) / 2

photo=window.open(URL, "PhotoWindow", "width=" + windowWidth + ",height=" + windowHeight + ",toolbars=no,scrollbars,top="+nTop+",left="+nLeft );
Prod="e_learning.htm";
}

esta es la llamada a la function

<a href="javascript:showLargePhoto('recomendar_1.php' ,'450','200');" class="productos">
Recomenda este Producto
</a>

y en la function a lo ultimo le agregue "Prod="e_learning.htm";"

y quiero en la proxima pagina en este caso 'recomendar_1.php' recuperar
ese parametro (Prod="e_learning.htm";)


Muchas gracias.