. , , :
application/
someScript.php
views/
de/
someView.php
en/
someView.php
models/
someModel.php
, , - .
session_start(); //dont forget to call this somewhere
$_SESSION['lang'] = 'en';
//and then in somewehere else:
include 'views/'.$_SESSION['lang'].'/someView.php'; //or whatever method is used to include views.
script. , script, , , UNIX, someScript.php :
//someScript.php
$timestamp = time();
, , , someView.php. , someView.php "en" :
<html>
<head>
<title>Currect UNIX timestamp!</title>
</head>
<body>
<p>The current UNIX timestamp is: <?php echo $timestamp; ?> seconds</p>
</body></html>
'de' , .
, , someScript.php, script:
include '../views/'.$_SESSION['lang'].'/someView.php';
: http://www.onlamp.com/pub/a/php/2005/09/15/mvc_intro.html
: MVC, .