oh i see... you want a way to remember the language choice between each page without forcing the user to submit a form every page. The answer is to use a session. Your php.ini may be set to auto_start a session every page load or you may have to manually start it with session_start().
Once the use has choosen the initial language, simply do this
index.php?language=english
$_SESSION['language'] = $_GET['languauge']
include("{$_SESSION['language']}.php");
every other page:
session_start();
/// default to english if session has not been set
if ( empty($_SESSION['langauge']) ) {
$_SESSION['language'] = 'english';
}
include("{$_SESSION['language']}.php");
once you stick it in the session once, a call to session_start() (or .ini file setting) will make it available across pages