Ask Your Question
1

What is the method for showcasing HTML string (with HTML tags) as text inside a textarea?

asked 2023-06-26 18:46:02 +0000

pufferfish gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2023-06-26 19:10:02 +0000

nofretete gravatar image

There are a couple of ways to showcase HTML string (with HTML tags) as text inside a textarea:

  1. Escape HTML tags: You can escape the HTML tags using the HTML entities. For example, < becomes < and > becomes >. Then set the escaped HTML string as the value of textarea. This will display the HTML string as plain text inside the textarea.

  2. Wrap inside tag: You can wrap the HTML string inside the <code> tag and set it as the value of textarea. This will display the HTML string as formatted text inside the textarea.

Here's an example using the first method:

<textarea><?php echo htmlentities($htmlString) ?></textarea>

And here's an example using the second method:

<textarea><code><?php echo $htmlString ?></code></textarea>
edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-06-26 18:46:02 +0000

Seen: 7 times

Last updated: Jun 26 '23