| |||
Respuesta: poner codigo php oks ya solucione esto, pero ahora quiero hacer es que esa misma ventana siga abierta para que procese formulario dentro de la misma ventana Mi codigo es este: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>Ventana modal</title> <style> .black_overlay{ display: none; position: absolute; top: 0%; left: 0%; width: 100%; height: 100%; background-color: black; z-index:1001; -moz-opacity: 0.8; opacity:.80; filter: alpha(opacity=80); } .white_content { display: none; position: absolute; top: 25%; left: 25%; width: 50%; height: 50%; padding: 16px; border: 16px solid orange; background-color: white; z-index:1002; overflow: auto; } </style> </head> <body> <p>This is the main content. To display a lightbox click <a href = "javascript:void(0)" onclick = "document.getElementById('light').style.display='b lock';document.getElementById('fade').style.displa y='block'">here</a></p> <div id="light" class="white_content"><?echo "<FORM id=formulario action=ventana.php method=post encType=multipart/form-data> Usuario<input type=text name=usuario size=20 value=''> <input type=hidden name=archivo value='".$archivo."'> <P><INPUT class=boton id=enviar type=submit value=Agregar name=enviar> </FORM>"; //Validando formulario if (isset($_POST[enviar]) && $_POST[usuario] !=""&& $_POST[archivo]!= "") //aqui dice si aprete el boton Enviar y si la variable usuario esta vacia ejecuto else de lo contrario no ejecuto { echo "Es correcto nombre de Usuario $_POST[usuario]"; echo '<a href="agregar.php?usuario='.$_POST['usuario'].'&archivo='.$_POST['archivo'].'">'.Si.'</a>'; } else { echo "Porfavor escribe nombre de usuario"; }?> <a href = "javascript:void(0)" onclick = "document.getElementById('light').style.display='n one';document.getElementById('fade').style.display ='none'">Close</a></div> <div id="fade" class="black_overlay"></div> </body> </html>
__________________ :cool: aprendiz :cool: |
Etiquetas: |