you can do it with
<a href="index.php?language=en"> <a href="index.php?language=no">
and get the languages ββand save them in a cookie and include the file according to the cookie, for example
if ( !empty($_GET['language']) ) { $_COOKIE['language'] = $_GET['language'] === 'en' ? 'en' : 'nl'; } else { $_COOKIE['language'] = 'nl'; } setcookie('language', $_COOKIE['language']);
and than
if ( $_COOKIE['language'] == "en") { include("headerEn.php"); } else { include("header.php"); } ?>
source share