Nieuw lid |
|
K, ik heb de oplossing zelf al uitgedokterd
Ik heb in de databse deze functie gebruikt:
<?php
/* br2nl for use with HTML forms, etc. */
function br2nl($text)
{
/* Remove XHTML linebreak tags. */
$text = str_replace("<br />","",$text);
/* Remove HTML 4.01 linebreak tags. */
$text = str_replace("<br>","",$text);
/* Return the result. */
return $text;
}
?>
<?php /* br2nl for use with HTML forms, etc. */ function br2nl($text) { /* Remove XHTML linebreak tags. */ /* Remove HTML 4.01 linebreak tags. */ /* Return the result. */ return $text; } ?>
|