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>';