Hi,
I want to use this kind of $var and if doesn't want to work at all!
Could someone tell me why it doesn't work...??? 🙁
<?php
$lang = "deu"; //Will be send by URL > test.php?lang=$lang
$content_eng = "HALLO WORLD";
$content_deu = "HALLO WELT";
$content_fra = "SALUT TERRE";
$content_lge = $content_ . $lang; //Problem is here (this line)
echo"output: ( $content_lge )";
//My output is currently "deu" instead of "HALLO WELT"
?>