elhacker.net cabecera Bienvenido(a), Visitante. Por favor Ingresar o Registrarse
¿Perdiste tu email de activación?.

 

 


Tema destacado: Recopilación Tutoriales y Manuales Hacking, Seguridad, Privacidad, Hardware, etc


  Mostrar Mensajes
Páginas: 1 [2] 3
11  Programación / PHP / Re: PAGINA HTML POR CAPAS en: 24 Octubre 2009, 04:59 am
Mr. Crowley
Gracias.
12  Programación / PHP / Re: PAGINA HTML POR CAPAS en: 23 Octubre 2009, 19:20 pm
Mr.Crowley
Tu opinion es mejor no usar include.
13  Programación / PHP / Re: PAGINA HTML POR CAPAS en: 23 Octubre 2009, 19:17 pm
Mr. Crowley
Revisastes tu correo??? Please.
14  Programación / PHP / Re: PAGINA HTML POR CAPAS en: 23 Octubre 2009, 19:08 pm
Esta es la funcion.

Código:

stuHover = function() {
var cssRule;
var newSelector;
for (var i = 0; i < document.styleSheets.length; i++)
for (var x = 0; x < document.styleSheets[i].rules.length ; x++)
{
cssRule = document.styleSheets[i].rules[x];
if (cssRule.selectorText.indexOf("LI:hover") != -1)
{
newSelector = cssRule.selectorText.replace(/LI:hover/gi, "LI.iehover");
document.styleSheets[i].addRule(newSelector , cssRule.style.cssText);
}
}
var getElm = document.getElementById("nav").getElementsByTagName("LI");
for (var i=0; i<getElm.length; i++) {
getElm[i].onmouseover=function() {
this.className+=" iehover";
}
getElm[i].onmouseout=function() {
this.className=this.className.replace(new RegExp(" iehover\\b"), "");
}
}
}
if (window.attachEvent) window.attachEvent("onload", stuHover);


15  Programación / PHP / Re: PAGINA HTML POR CAPAS en: 23 Octubre 2009, 19:04 pm
disculpa por la escritura.
Si estaba preguntando. El menu que estoy utilizando tiene una funcion en javascript.
16  Programación / PHP / Re: PAGINA HTML POR CAPAS en: 23 Octubre 2009, 18:56 pm
Mr. Crowley
Exacto en el encabezado no utilizo ajax ni en el pie pero en el menu utilizo javascript me toca poner script en el archivo o lo dejo donde llamo el menu.
17  Programación / PHP / Re: PAGINA HTML POR CAPAS en: 23 Octubre 2009, 18:48 pm
Mr.Crowley
Yo pense realizarlos asi ya que es lo mismo en todas las paginas y pense no repetir el mismo codigo.

Gracias de todas formas.
18  Programación / PHP / PAGINA HTML POR CAPAS (SOLUCIONADO) en: 23 Octubre 2009, 05:14 am
Hola a todos.

Estoy tratando de trabajar una pagina por capas y tengo el encabezado.html
menu.html y el pie.htlm. me pregunta es como hago para llamar estas paginas en la pagina principal.

index.html

<body>
     encabezado.html
     menu.html

     <div id="contenido">


     </div>

     pie.html

</body>
19  Programación / PHP / Re: LOGIN EN PHP AJAX Y MYSQL NO ME EJECUTA EL INDEX.PHP en: 20 Octubre 2009, 19:31 pm
Mr. Crowley

Buen colaborador. muy buen ejemplo.
le doy cinco estrellas.
20  Programación / PHP / Re: LOGIN EN PHP AJAX Y MYSQL NO ME EJECUTA EL INDEX.PHP en: 20 Octubre 2009, 01:13 am
SI CLARO ME MUESTRA LA PAGINA EN BLANCO MOSTRANDOME EN LA PARTE SUPERIOR "Usuario Valido" Y QUEDA AHI. Y NO PASA AL INDEX.PHP EN FORMA LOCALHOST SI FUNCIONA PERFECTO.
Páginas: 1 [2] 3
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines