How do i replace "Å" by "o" using a php script if "Å" can only be written in rich text documents (rtf,doc) Its not suported by urlencode that will replace it with a strange #333 that becomes %23333 in the url address.
<?php $text = 'Å'; echo iconv('', 'ASCII//TRANSLIT', $text); /** Returns: * * o * */ PHP: As before, you may need to remove some minor extras, but seeing as you know about the other thread anyway this might not the be the solution you're looking for. More details perhaps?