Hi naja das hab ich auch schon versucht also
$r = array("<br />");
$text=str_replace($r, "", $text);
Wieso verwendest du ein array? Versuch mal Folgendes:
$text = str_replace('<br />', '', $text);
das sollte eigentlich funktionieren...
mfg
Rato
Hi naja das hab ich auch schon versucht also
$r = array("<br />");
$text=str_replace($r, "", $text);
Wieso verwendest du ein array? Versuch mal Folgendes:
$text = str_replace('<br />', '', $text);
das sollte eigentlich funktionieren...
mfg
Rato