I *think* you've got a typo -- you've said ln2br instead of nl2br i think.

Aaaannny way, you can't modify WHAT php does in nl2br, but you can do
something to the resulting code, like replacing "</li><br />" with "</li>":

<?
$original = "<ul><li>Blar</li></ul>";
$new = nl2br($original);
$new = str_replace('</li><br />', '</li>', $new);
?>

Either that, or write your own version of nl2br which ignores </li> (*no
way* I'd both doing this!!!!)


Justin French


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to