hi @ all
ersteinmal DANKE für eure hilfestellung und denkansätze,
doch sie sind für mich leider sehr cryptisch (werdet ihr euch beim forumtreffen in münster untereinander auch so unterhalten???? / übrigens mein atelier im speicher II ist ganz in der nähe vom hawerkamp!!!!!!!)
wenn ich es richtig verstanden habe, sieht es so aus:
<div class="content_linker_textblock">
<?php
if(empty($id_landessprache) {
$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">
<ul id="navigation_linke_box">
<li>
<a href="?id_landessprache=de">DE</a>
</li>
<li>
<a href="?id_landessprache=en">ENG</a>
</li>
</ul>
</dl>
<?php
include("templates/script_de_oder_en.php");
?>
</div>
script_deoderen.php
<?php
if($id_landessprache == "en") {
include('contenttextblock_en.html');
}
else {
include('contenttextblock_de.html');
}
?>
aber es funzt immer noch nicht jetzt hab ich ein parser fehler........
mom, ein query string sieht doch so aus: $id_landessprache = $_GET['id_landessprache'];
doch wo müsste das hin?
tassseufZ