Advertisement
Guest User

Untitled

a guest
Aug 19th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <?php
  2.  
  3. // assigning values to a variable.
  4. $name = 'Tryton';
  5. $favourite = 'Stone Sour';
  6.  
  7. // showing the text.
  8. echo "Hello my name is " . $name . " and my favourite band it's " . $favourite;
  9. echo "<br /><br />";
  10.  
  11. function addNumbers (){
  12. echo 10 * 10 +100;
  13. }
  14. addNumbers();
  15. echo "<br /><br />";
  16.  
  17. function addNumbers($firstNumber, $secondNumber){
  18. echo $10 + $5; }
  19. addNumbers("10", "5");
  20.  
  21. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement