ok. ich versuch es mal:
<div class="content_linker_textblock">
<?php
$id_landessprache= "de";
?>
<dl class="content_baustein_links_einleitung">
<dd>
“Man does not need society at all, it’s the society that needs man.<br />
Society is a forced measure of protection and survival. Unlike a<br />
gregarious animal, man must live alone - in nature among animals,<br />
plants and in contact with them.” -- Andrey Tarkovsky<br />
</dd>
</dl>
<dl class="content_baustein_links_submenue">
<dd>
<ul id="navigation_linke_box">
<li>
<a href="<?php $id_landessprache= "de"; ?>">DE</a>
<a href="<?php $id_landessprache= "en"; ?>">ENG</a><div></div>
</li>
</ul>
</dd>
</dl>
<?php
include("templates/script_de_oder_en.php");
?>
</div>
dabei sieht das script: script_de_oder_en.php so aus:
<?php
if($id_landessprache == "de")
{
include('contenttextblock_de.html');
}
else
{
if($id_landessprache == "en")
{
include('contenttextblock_en.html');
}
}
?>
wieso funzt es nicht, ich möchte das wenn man als allererstes auf die seite kommt, der deutsche text erscheint, umschalten kann man dann durch die DE und EN bottons.
irgendwo ist da ein denkfehler! aber wo?
ratlos seufZ