diff options
author | ichdasich <ichdasich@29ba0400-6e00-0410-a75a-ca02368028f8> | 2008-09-10 03:42:44 +0000 |
---|---|---|
committer | ichdasich <ichdasich@29ba0400-6e00-0410-a75a-ca02368028f8> | 2008-09-10 03:42:44 +0000 |
commit | b00d5b96c6d33572b6d7c68688d6d1c4fbd0f0f4 (patch) | |
tree | cf02da8b2839bea3b6a966b575f2ba84966676bb /includes/funktion_flag.php | |
parent | 34aff10f383fe963cd3f8fd7f096321302e1efb6 (diff) |
moved /inc to ../includes
git-svn-id: svn://svn.cccv.de/engel-system@281 29ba0400-6e00-0410-a75a-ca02368028f8
Diffstat (limited to 'includes/funktion_flag.php')
-rw-r--r-- | includes/funktion_flag.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/includes/funktion_flag.php b/includes/funktion_flag.php new file mode 100644 index 00000000..2c3ecc13 --- /dev/null +++ b/includes/funktion_flag.php @@ -0,0 +1,12 @@ +<?PHP +echo "<br>"; + +if( strpos( $_SERVER["REQUEST_URI"], "?") >0) + $URL = $_SERVER["REQUEST_URI"]. "&SetLanguage="; +else + $URL = $_SERVER["REQUEST_URI"]. "?SetLanguage="; + +echo "<a href=\"". $URL. "DE\"><img src=\"./inc/flag/de.gif\" alt=\"DE\"></a> "; +echo "<a href=\"". $URL. "EN\"><img src=\"./inc/flag/en.gif\" alt=\"En\"></a> "; + +?> |