I was playing last night with some PHP and... I got stuck... what am I doing wrong?
PHP Code:
<?PHP
$line = file('tpl/gen_text.tpl');
if(!empty($_GET["scr"]))
{ switch($scr) {
case "DE":
print("$line[1]");
break;
case "EN":
print("$line[2]");
break;
default:
print("$line[1]");
} }
else {
print("$line[1]");
}
?>