Code Comments
Programming Forum and web based access to our favorite programming groups.Try this: echo str_replace ( "\n", "<p>", $string); I believe it always stores newlines as \n, since PHP and MySQL are native to Unix/Linux. -- Marcjon
Post Follow-up to this message"Marcjon" <marcjon@fastmail.fm> wrote in message news:1093844358.24698.203307089@webmail.messagingengine.com... > Try this: > echo str_replace ( "\n", "<p>", $string); > > I believe it always stores newlines as \n, since PHP and MySQL are > native to Unix/Linux. > -- > Marcjon Or use the PHP built-in function nl2br(): http://de3.php.net/manual/en/function.nl2br.php Regards, Torsten Roehr
Post Follow-up to this messageI would start with a <p>, then print the data from the database,
str_replace("\n","<p></p>",$string); and then end with a </p>, that way you
have opening and closing <p></p> tags.
--
-------------------------------------------------------------->>
Jasper Howard :: Database Administration
Velocity7
1.530.470.9292
http://www.Velocity7.com/
<<--------------------------------------------------------------
"Marcjon" <marcjon@fastmail.fm> wrote in message
news:1093844358.24698.203307089@webmail.messagingengine.com...
> Try this:
> echo str_replace ( "\n", "<p>", $string);
>
> I believe it always stores newlines as \n, since PHP and MySQL are
> native to Unix/Linux.
> --
> Marcjon
Post Follow-up to this messagePowered by vBulletin
Copyright 2000-2006 Jelsoft Enterprises Limited.