[Ayuda] Abrir ventana

Iniciado por Miseryk, 28 Julio 2011, 17:16 PM

0 Miembros y 1 Visitante están viendo este tema.

Miseryk

Hola hice éste código y no funciona, supuestamente está bien  :rolleyes:

Código (php) [Seleccionar]

<script language="javascript">
function topen(dominio)
{
var1 = 'mail.' + dominio;
var2 = gethostbyname(var1);
window.open('http://' + var2 + ':81/admin/list.cgi?domain=' + dominio + '&cmd=1');
}
</script>

<form name="test" method="post">
<LABEL for="dominio">Dominio: </LABEL>
<INPUT type="text" dom="dom">
<br>
<input type="button" value="Abrir" onclick="topen(dom.value)" />
</form>


Alguna idea? Desde ya muchas gracias.
Can you see it?
The worst is over
The monsters in my head are scared of love
Fallen people listen up! It's never too late to change our luck
So, don't let them steal your light
Don't let them break your stride
There is light on the other side
And you'll see all the raindrops falling behind
Make it out tonight
it's a revolution

CL!!!

RedZer

que se supone que deceas hacer? abrir una ventana pop up? si es asi te dejo un code
Código (javascript) [Seleccionar]
<script>
function abrir(url) {
open(url,'','top=300,left=300,width=600,height=400') ;
}
</script>


Código (html4strict) [Seleccionar]

<a href=javascript:abrir('ver.php?id=1')>Leer mas..</a>
Nacido y criado entre gente que enseño a pensar antes de creer a ciegas, Todo me causa curiosidad en el mundo

Miseryk

#2
Estuve viendo que el php se ejecta en el server o algo así, que no es en tiempo de ejecución, lo que quiero hacer es q cdo haga click en el botón, pase el texto que sería el dominio, como parámetro a una función, que me concatene algo y luego que me saque la IP de esa concatenación, y luego que lo una a otra dirección y que me abra esa dirección.
Can you see it?
The worst is over
The monsters in my head are scared of love
Fallen people listen up! It's never too late to change our luck
So, don't let them steal your light
Don't let them break your stride
There is light on the other side
And you'll see all the raindrops falling behind
Make it out tonight
it's a revolution

CL!!!