Advertisement
Jet_Francis_Podaca

SW No. 1 - PHP Variable

Mar 6th, 2023
728
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. <?php
  2.  
  3. //SW No.1 - PHP Variable
  4. //Jet Francis Podaca - 3E
  5.  
  6. $firstname = "Jet Francis ";
  7. $lastname = "Podaca";
  8. $fullname = $firstname . $lastname;
  9. echo $fullname;
  10.  
  11.  
  12. $x = 10;
  13. $y = 7;
  14. $y++;
  15. $x--;
  16. $z = $x + $y;
  17. echo "\nThe sum of variable x and y is $z";
  18.  
  19. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement