Advertisement
Guest User

Untitled

a guest
Dec 4th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. <?php
  2. $jezyk = $_GET['j'];
  3. if($jezyk == 'polski') {
  4. echo "<html>
  5. <head>
  6. <link rel='Stylesheet' type='text/css' href='style.css' title='domyslny' />
  7. <link rel='Alternate stylesheet' type='text/css' href='style1.css' title='alternatywny' />
  8. </head>
  9. <body><h1 style='text-align: center;'>Muzyka black metalowa</h1></body>
  10. </html>
  11. ";
  12. }
  13. else {
  14. echo "<html>
  15. <head>
  16. <link rel='Stylesheet' type='text/css' href='style.css' title='domyslny' />
  17. <link rel='Alternate stylesheet' type='text/css' href='style1.css' title='alternatywny' />
  18. </head>
  19. <body><h1 style='text-align: center;'>Black Metal Music</h1></body>
  20. </html>
  21. ";
  22. }
  23. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement