Special characters on website made in cakephp

2

Hi, I am modifying a website designed in cakephp, but in a modal for whatsapp some special characters do not look good and I tried to do some things and nothing worked for me:

<!DOCTYPE html>
<html lang="es-ES">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=gb18030">
    <?php echo $this->Html->charset(); ?>
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta name="author" content="Seadog">

    <!-- GEOTAG -->
    <meta name="DC.title" content="Velez Lara" />
    <meta name="geo.region" content="CO-ANT" />
    <meta name="geo.placename" content="Medell&iacute;n" />
    <meta name="geo.position" content="6.206279;-75.570182" />
    <meta name="ICBM" content="6.206279, -75.570182" />

    <!-- <meta name="lang" content="es-co" /> -->
    <meta name="robots" content="index, follow" />
    <meta name="google" content="index, follow" />

That's how it was originally

try1:

<!DOCTYPE html>
<html lang="es-ES">
<head>
    <?php echo $this->Html->charset(); ?>
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta name="author" content="Seadog">

    <!-- GEOTAG -->
    <meta name="DC.title" content="Velez Lara" />
    <meta name="geo.region" content="CO-ANT" />
    <meta name="geo.placename" content="Medell&iacute;n" />
    <meta name="geo.position" content="6.206279;-75.570182" />
    <meta name="ICBM" content="6.206279, -75.570182" />

    <!-- <meta name="lang" content="es-co" /> -->
    <meta name="robots" content="index, follow" />
    <meta name="google" content="index, follow" />

try2:

<!DOCTYPE html>
<html lang="es-ES">
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta name="author" content="Seadog">

    <!-- GEOTAG -->
    <meta name="DC.title" content="Velez Lara" />
    <meta name="geo.region" content="CO-ANT" />
    <meta name="geo.placename" content="Medell&iacute;n" />
    <meta name="geo.position" content="6.206279;-75.570182" />
    <meta name="ICBM" content="6.206279, -75.570182" />

    <!-- <meta name="lang" content="es-co" /> -->
    <meta name="robots" content="index, follow" />
    <meta name="google" content="index, follow" />

This is the modal:

<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
  <div class="modal-dialog" role="document">
    <div class="modal-content">
      <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
        <h4 class="modal-title" id="myModalLabel">¡Tu procedimiento en manos de un especialista!</h4>
      </div>
      <div class="modal-body">
   Para el Dr. Vélez Lara es muy importante conocer tu caso. Nuestro equipo estará disponible para tí.<br/><br/>

<strong>Horarios de atención:</strong> Lunes a viernes de 8:00 am a 5:00 pm.<br/><br/>

¡Muchas gracias!<br/><br/>


<div class="btn-wpcenter"><a class="btn btn-whatsapp" href="https://api.whatsapp.com/send?phone=573337890901&text=Hola! Quiero una Cita de Valoración con el Dr. Vélez Lara para (Escribe tu caso puntual)" target="_blank">Escribir mensaje <span class="pl10"><img src="./img/wp2.png" width="21" height="21"/></span></a></div>
     </div>
     </div>
  </div>
</div>

But no matter what the result is the same:

And the BD has the following coding, I do not know if that helps:

    
asked by Andrés Vélez 26.09.2018 в 18:43
source

0 answers