Ver Mensaje Individual
  #3 (permalink)  
Antiguo 03/02/2006, 17:00
Avatar de flaviovich
flaviovich
 
Fecha de Ingreso: agosto-2005
Ubicación: Lima, Peru
Mensajes: 2.951
Antigüedad: 18 años, 9 meses
Puntos: 39
Aca teneis otra forma:
Código PHP:
<html>
<
head>
<
title>Popup</title>
<
script language="Javascript">
function 
getURLvalues()
{
    
URL document.URL;
    
param URL.substr(URL.lastIndexOf("?")+1);
    
pairs param.split("&");
    for (
i in pairs)
    {
        
value pairs[i].split("=");
        
alert(value[1]);
    }
}
</script>
</head>
<body onLoad="getURLvalues();">
hola mundo!
</body>
</html> 
Si no entiendes algo, pregunta!
__________________
No repitamos temas, usemos el Motor de busquedas
Plantea bien tu problema: Ayúdanos a ayudarte.