Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.46 KB | None | 0 0
  1.  
  2. <?php
  3. $txt1 = "Learn PHP";
  4. $txt2 = "W3Schools.com";
  5. $x = 5;
  6. $y = 4;
  7.  
  8. echo "<h2>" . $txt1 . "</h2>";
  9. echo "Study PHP at " . $txt2 . "<br>";
  10. echo $x + $y;
  11. ?>
  12. <?php
  13. $txt1 = "Learn PHP";
  14. $txt2 = "W3Schools.com";
  15. $x = 5;
  16. $y = 4;
  17.  
  18. echo "<h2>" . $txt1 . "</h2>";
  19. echo "Study PHP at " . $txt2 . "<br>";
  20. echo $x + $y;
  21. ?>
  22. <?php
  23. $txt1 = "Learn PHP";
  24. $txt2 = "W3Schools.com";
  25. $x = 5;
  26. $y = 4;
  27.  
  28. echo "<h2>" . $txt1 . "</h2>";
  29. echo "Study PHP at " . $txt2 . "<br>";
  30. echo $x + $y;
  31. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement