Moin!
$inhalt = htmlspecialchars($inhalt);
sorgt ledigkich dafür, dass < in html-codes umgewandelt wird, und ' bzw " escapet wird (" '), wober hier die funktion htmlentities(); vorzuziehen ist, weil man diese funktion auch wieder rückgängig machen kann (html_entity_decode(); ).
http://de2.php.net/manual/de/function.htmlentities.php
http://de2.php.net/manual/de/function.html-entity-decode.php
um umlaute zu ersetzten müsste sowas stehen:
$match = array('ä','ö','ü','ß','Ä','Ö','Ü');
$replace = array('ä','ö','ü','ß','Ä','Ö','Ü');
str_replace($match,$replace,$text);
siehe auch
http://de2.php.net/manual/de/function.str-replace.php
tschüss ichen
--
Selfcode: sh:( fo:| br: n4:& ie:% mo:| mo:| de:] zu:) fl:| ss:| ls:[ js:|
Selfcode: sh:( fo:| br: n4:& ie:% mo:| mo:| de:] zu:) fl:| ss:| ls:[ js:|