*/ class HrefGenerator { function createHref($text) { $output = str_replace(" ", "-", $text); $output = str_replace("ä","ae",$output); $output = str_replace("Ä","Ae",$output); $output = str_replace("ö","oe",$output); $output = str_replace("Ö","Oe",$output); $output = str_replace("ü","ue",$output); $output = str_replace("Ü","Ue",$output); $output = str_replace("ß","ss",$output); $output = str_replace('"', "", $output); $output = str_replace("'", "", $output); $output = str_replace("?", "", $output); $output = str_replace("#", "", $output); return $output; } }