Guest User

Untitled

a guest
Jan 16th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. $x="<p>html</p>"; echo $x;
  2.  
  3. echo "<p>html</p>";
  4.  
  5. echo '<p>HTML</p>';
  6.  
  7. $x = "<p>html</p>";
  8. echo htmlentities($x);
  9.  
  10. <p>html</p>
  11.  
  12. $x = "<p>html</p>";
  13. echo html_entity_decode($x);
  14.  
  15. html
  16.  
  17. $x = "<p>html</p>";
  18. echo strip_tags($x);
  19.  
  20. html
Add Comment
Please, Sign In to add comment