Created
January 26, 2018 05:22
-
-
Save heckctor/56aa948d354fb52f98573e369843d546 to your computer and use it in GitHub Desktop.
Busca el valor en la variable de la URL
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if (htmlspecialchars($_GET["lang"]) == 'en') | |
{ | |
echo ' | |
<div class="subFooter">Hand Med 2018 | <a href="./notice-of-privacy/?lang=en" >Notice of Privacy</a> </div> | |
'; | |
}else | |
{ | |
echo ' | |
<div class="subFooter">Hand Med 2018 | <a href="./aviso-de-privacidad" >Aviso de Privacidad</a> </div> | |
'; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment