Advertisement
Guest User

index.php

a guest
Jul 30th, 2015
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.72 KB | None | 0 0
  1. <?php
  2. session_start();
  3. include("lang.php");
  4.    include("txt.php");
  5. defineStrings();
  6. ?>
  7. <HTML>
  8. <HEAD>
  9. <TITLE><?php echo "WELCOME_TXT" ?></TITLE>
  10. <META HTTP-EQUIV="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>">
  11. <META HTTP-EQUIV="Content-Language" content="<?php echo LANGCODE; ?>">
  12. <BODY>
  13. <h1 align=center><?php echo WELCOME_TXT; ?></h1>
  14.   <p align=center><strong><?php echo CHOOSE_TXT; ?></strong><br><br>
  15. <a href="<?php echo $_SERVER[PHP_SELF].'?lang=en'; ?>"><img src="en_flag.gif" border=0></a>
  16. <a href="<?php echo $_SERVER[PHP_SELF].'?lang=de'; ?>"><img src="de_flag.gif" border=0></a>
  17. <a href="<?php echo $_SERVER[PHP_SELF].'?lang=ja'; ?>"><img src="ja_flag.gif" border=0></a>
  18. </p>
  19. </BODY>
  20. </HTML>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement