phpbar.de logo

Mailinglisten-Archive

[php] nl2br

[php] nl2br

Kristof Hamann info_(at)_korelstar.de
Wed, 05 Jan 2000 15:49:03 +0100


Moin David,


> Nur wenn man jetzt Enter macht steht ein Eintrag
> in der Datei nicht mehr in einer Zeile sonder bei
> jedem Enter fängt er auch ne neue Zeile an. Kann
> ich das irgendwie verhindern, oder ist das ein
> Übel mit dem ich leben muß???

Das Umwandeln per Hand ist manchmal doch einfacher. Ich habe das
Problem so gelöst:

<?php
$content = explode("\n",$content);
echo count($content);
for($i=0;$i<count($content);$i++) {
   $content[$i] = trim($content[$i])."<BR>";
}
$content = join("",$content);
?>


--
http://www.php3-forum.de/ - info_(at)_php3-forum.de



php::bar PHP Wiki   -   Listenarchive