Advertisement
Guest User

Untitled

a guest
Aug 19th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 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($first, $second){
  12. echo $first + $second;
  13. }
  14.  
  15. addNumbers("10", "5");
  16.  
  17. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement