Hello, I want to use something like this in a PHP file:
$about = array ('dutch' => 'over', 'spanish' => 'sobre', 'english' => 'about');
if ($USER['lang'] == 'dutch'){
// $about - becomes 'over'
}
elseif ($USER['lang'] == 'spanish') {
// $about - becomes 'sobre'
}
else {
// $about - becomes 'about'
}
And transfer the outcome to a HTML file. I was thinking I use {about} in the HTML page to print the outcome.
Does anybody know how to do this???