0
how can i generate output <strong>xyz</strong>
2 ответов
+ 2
Just put quotes (or double quotes) at the beginning and end of it to make it string!
echo "<strong>xyz</strong>";
0
you can print plain text, HTML or anything using echo or print
Examples:
echo "Hi Prem"; // plain text
echo "Hi <strong>Prem</strong>";