He creado un condicional sencillo pero no me funciona, me imprime los tres (Español, English y Português) He probado a poner comillas simples, dobles, sin comillas... ¿alguien sabe por qué no funciona? Gracias.
Código PHP:
$idioma=$_REQUEST['idioma'];
if (!$idioma) $idioma = "1";
echo $idioma;
if ($¡dioma != '1') {echo "Español | ";}
if ($¡dioma != '2') {echo "English | ";}
if ($¡dioma != '3') {echo "Português";}