Advertisement
Guest User

Untitled

a guest
Nov 20th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.58 KB | None | 0 0
  1. <?php
  2. $a=2;
  3. //1-muzyka
  4. //2- filmik
  5. //3- zdjecie
  6. //4- link
  7. switch ($a) {
  8.     case '1':
  9.         echo '<embed width="200px" src="muzyka.mp3" autostart="false" controls="console"></embed>';
  10.         break;
  11.     case '2':
  12.         echo '<iframe width="560" height="315" src="https://www.youtube.com/embed/zP7WHODAh5g" frameborder="0" gesture="media" allowfullscreen></iframe>';
  13.         break;
  14.     case '3':
  15.         echo '<embed width="300px" src="pies.jpeg"></embed>';
  16.         break;
  17.     case '4':
  18.         echo '<a href="https://youtube.com">Kliknij tutaj</a>';
  19.         break;
  20.     default:
  21.         echo "Nie ma czegos takiego";
  22.         break;
  23. }
  24.  
  25. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement