Vamos ao que fiz e os resultados: Criei a seguinte função no topo da página HTML: <?php Function txtTohtml($txt) { // Transforms txt in html $string = $txt; $string = str_replace('<', '<', $string); $string = str_replace('>', '>', $string); return $string; } ?> Daí fiz a chamada da função no corpo do HTML da seguinte forma: ... <!-- ${$partner['location'] = txtTohtml($partner['location'])}--> <div style=margin-top:10px;"> {$partner['location]} </div> ... Quando executo o arquivo .HTML ele interpreta como HTML porém não mostra o conteúdo correto. O conteúdo que tem em $partner['location'], provindo do banco de dados é: <iframe width="220" height="220" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?f=q&source=s_q&hl=pt-BR&geocode=&q=Rua+Jo%C3%A3o+Reffo,+872,+Curitiba+-+Paran%C3%A1,+Brasil&sll=-25.408082,-49.349899&sspn=0.020157,0.033903&ie=UTF8&hq=&hnear=R.+Jo%C3%A3o+Reffo,+872+-+Santa+Felicidade,+Curitiba+-+Paran%C3%A1,+82410-000,+Brasil&ll=-25.385751,-49.335051&spn=0.017059,0.018969&z=14&iwloc=A&output=embed"></iframe><br /><small><a href="http://maps.google.com/maps?f=q&source=embed&hl=pt-BR&geocode=&q=Rua+Jo%C3%A3o+Reffo,+872,+Curitiba+-+Paran%C3%A1,+Brasil&sll=-25.408082,-49.349899&sspn=0.020157,0.033903&ie=UTF8&hq=&hnear=R.+Jo%C3%A3o+Reffo,+872+-+Santa+Felicidade,+Curitiba+-+Paran%C3%A1,+82410-000,+Brasil&ll=-25.385751,-49.335051&spn=0.017059,0.018969&z=14&iwloc=A" style="color:#0000FF;text-align:left">Exibir mapa ampliado</a></small> Ele não mostra o mapa, mas cria um iframe corretamente. O que fiz de errado? abs