Advertisement
Guest User

Untitled

a guest
Jun 29th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. <?php
  2.  
  3. $variable = 'Example';
  4.  
  5. $html = '<strong>Hello world</strong>
  6. <br />
  7. <?php echo $variable ?>
  8. <p>More HTML</p>'
  9.  
  10. // some code here
  11.  
  12. ?>
  13.  
  14. I want the output to be:
  15.  
  16. <strong>Hello world</strong>
  17. <br />
  18. Example
  19. <p>More HTML</p>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement