Kann ich nl2br und wordwrap irgendwie verbinden,
so dass beides geprüft wird?
Wie zähle ich $line?
so dass beides geprüft wird?
Wie zähle ich $line?
PHP-Code:
$_POST[manual_input] = "$manual_input";
$txt = nl2br($HTTP_POST_VARS[manual_input]);
echo "<font class=textBlack>$txt</font>";
$lines = explode("\n",$manual_input);
$c_lines = count($lines);
echo"$c_lines";
//mein ansatz, der überdacht werden sollte, weil es net funzt
// foreach ($lines as $line) {
// $c_line = count($line);
// echo "$line"; //$line ist empty
// }
$new = wordwrap ( $manual_input, 80, "<br>\n", 1);
echo"<br><br><font class=textBlack>$new</font>";
Kommentar