Guest User

Untitled

a guest
Jul 22nd, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.50 KB | None | 0 0
  1. <?php
  2. $lang = preg_replace("/[^a-zA-Z0-9äöüÄÖÜß]/", "", $_GET['l']);
  3. if($lang == "" || $lang == "de"){
  4. $de = "img";
  5. $en = "imga";
  6. $len1 = "<a href=\"index.php?l=en\">";
  7. $len2 = "</a>";
  8. $it = "imga";
  9. $lit1 = "<a href=\"index.php?l=it\">";
  10. $lit2 = "</a>";
  11. }elseif($lang == "en"){
  12. $de = "imga";
  13. $lde1 = "<a href=\"index.php?l=de\">";
  14. $lde2 = "</a>";
  15. $en = "img";
  16. $it = "imga";
  17. $lit1 = "<a href=\"index.php?l=it\">";
  18. $lit2 = "</a>";
  19. }else{
  20. $de = "imga";
  21. $lde1 = "<a href=\"index.php?l=de\">";
  22. $lde2 = "</a>";
  23. $en = "imga";
  24. $len1 = "<a href=\"index.php?l=en\">";
  25. $len2 = "</a>";
  26. $it = "img";
  27. }
  28. ?>
  29. <html>
  30. <head>
  31. <title>Red Orchestra Heroes of Stalingrad</title>
  32. <link rel="stylesheet" media="screen" href="index.css">
  33. <script type="text/javascript" src="index.js"></script>
  34. </head>
  35. <body topmargin="4" leftmargin="0" rightmargin="0">
  36. <div onmouseover="Fade('htb', 0, 100);" id=htb>Search:
  37. <?php echo $lde1; ?><img src="img/de.jpg" class=<?php echo $de; ?> style="position: absolute; right: 75px;"/><?php echo $lde2; ?>
  38. <?php echo $len1; ?><img src="img/en.jpg" class=<?php echo $en; ?> style="position: absolute; right: 40px;"/><?php echo $len2; ?>
  39. <?php echo $lit1; ?><img src="img/it.jpg" class=<?php echo $it; ?> style="position: absolute; right: 5px;"/><?php echo $lit2; ?>
  40. <div class=hb style=left:0></div><div class=hb style=right:0></div>
  41. </div>
  42. <div class=main onmouseover="Fade('htb', 100, 0);"></div>
  43. </body>
  44. </html>
Add Comment
Please, Sign In to add comment