Skip to content

Instantly share code, notes, and snippets.

@heckctor
Created January 26, 2018 05:22
Show Gist options
  • Save heckctor/56aa948d354fb52f98573e369843d546 to your computer and use it in GitHub Desktop.
Save heckctor/56aa948d354fb52f98573e369843d546 to your computer and use it in GitHub Desktop.
Busca el valor en la variable de la URL
<?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