Skip to content
Advertisement

Do not escape html stored as string (execute or process html string) [closed]

In PHP (WordPress theme function, trying to add html stored in theme options to blog header), I’m trying to get the following line:

$x="<p>html</p>"; echo $x;

To render html just like:

echo "<p>html</p>";

The results are different, the first one will display html tags while the second will process the html. Can someone please help. Thanks

Advertisement

Answer

Use single quotes

Single quotes vs double quotes in PHP

echo '<p>HTML</p>';
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement