<html>
<head>
<title>Problema</title>
</head>
<body>
<form action="pagina2.php" method="post">
Ingrese nombre:<input type="text" name="nombre"><br>
Ingrese su curriculum:<br>
<textarea name="curriculum"></textarea>
<br>
<input type="submit" value="Confirmar">
</form>
</body>
</html>
La sintaxis de este control es bastante diferente a la del control text:
<textarea name="curriculum"></textarea>
Si queremos que aparezca inicializado con texto debemos disponerlo en:
<textarea name="curriculum">Hola Mundo</textarea>
La página PHP que procesa los dos datos ingresados en el formulario es:
<html>
<head>
<title>Problema</title>
</head>
<body>
<?php
echo "El nombre ingresado:".$_REQUEST['nombre'];
echo "<br>";
echo "El curriculum:".$_REQUEST['curriculum'];
?>
</body>
</html>
|