I discover your wonderful CMS... Whahahaou!
Here's my problem:
I'wish to include a portfolio into the CMS:
-> http://www.metadelic.com/dev/contenido/ ... p?idcat=21
I use a new module with:
Code: Alles auswählen
<?php include('portfolio/test.php'); ?>
The next step is to fill some info with a language file:
Code: Alles auswählen
<?php
if ($changelang=='1') {
include('portfolio/lang/fr-lang.php');
$lang = "Français";
}
elseif ($changelang=='3') {
include('portfolio/lang/en-lang.php');
$lang = "English";
}
else {
include('portfolio/lang/fr-lang.php');
$lang = "Français";
}
?>
<?php echo TXT_CONSEIL_INDEX; ?>
The login screen with username "Nobody".
What is wrong with my code?
Many thx in advance for your help and time,
Dominique Javet