#1• Me gustaria saber k debo utilizar, para hacer lo siguiente. |
#2•• debes de usar PHP, aquí te pongo un ejemplo.: Codigo: formulario.html: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Formulario de datos</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body> <form name="form1" method="post" action="procesar.php"> Texto: <input name="texto" type="text" id="texto" size="25"> <br> Página WEB: <input name="url" type="text" id="url" size="40"> </form> </body> </html> procesar.php: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Datos del forulario</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body> <?php $texto = $_POST['texto']; $url = $_POST['url']; echo "<a href=\"" . $url . "\">" . $texto . "</a>"; ?> </body> </html> Esto es todo amigo. EDICIÓN: algunos fallos en el scrtpt |
ATENCIÓN: Este tema no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un nuevo tema en lugar de responder al actual |
Opciones: Ir al subforo: |
Permisos: TU NO PUEDES Escribir nuevos temas TU NO PUEDES Responder a los temas TU NO PUEDES Editar tus propios mensajes TU NO PUEDES Borrar tus propios mensajes |
Temas similares |
No se han encontrado temas similares |