Advertisement
Guest User

Untitled

a guest
Oct 25th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1.  
  2. <?php
  3. function napisz() {
  4. echo "Witaj w kursie PHP<br>\n";
  5. }
  6.  
  7.  
  8. function naglowek(){
  9. $tytul_strony = $tytul;
  10. $opsi_strony = $opis;
  11.  
  12. echo "<html>";
  13. echo "<head>";
  14. echo "<meta charset=\"utf-8>\"";
  15. echo " <title>siema</title>";
  16. echo "</head> <body>";
  17.  
  18. }
  19. function rabat ($kwota, $procent){
  20. $wynik = $kwota - ($kwota*$procent/100);
  21. return $wynik;
  22. }
  23. echo rabat (100,10)
  24. napisz();
  25. ?>
  26. </body>
  27. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement