para separar lo que hay dentro de un text area, pero soy algo nuevo en php y no logro hacer esto.
esto es lo que he encontrado y logrado
Código PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
</head>
<body>
<p>
<label for="prueba"></label>
<textarea name="prueba" id="prueba" cols="45" rows="5"></textarea>
</p>
<p>
<label for="1"></label>
<input type="text" name="a" id="a" />
</p>
<p>
<input type="text" name="b" id="b" />
</p>
<p>
<input type="text" name="c" id="c" />
</p>
<p>
<input type="text" name="d" id="d" />
</p>
<p>
<input type="submit" name="ok" id="ok" value="Enviar" />
</p>
</body>
</html>
<?
$texto = nl2br($_POST['prueba']);
$lineas = explode ( '<br />' , $texto );
foreach ($lineas as $k => $v) {
echo "<SCRIPT>document.form.a.value=\"hey\";
</SCRIPT>";
}
?>