Making content bold in PHP: In this article, we will figure out how to strong content in PHP programming language?
Now and then we should show content with style. That it’s textual style, shading, make it strong, italic, underlined and some more. Including whatever style is completely founded on the message that we need to go across or standing out enough to be noticed.
Right now, will figure out how to strong content in PHP? At the point when we intense content we make the content stand apart than another. We can strike a solitary word, an expression, a sentence, a specific passage or a letter.
We utilize the HTML tag … to strong content inside the PHP contents.
Example:
Right now, will figure out how to strike a sentence, a word, a character and a section in PHP?
PHP code to make content striking
<?php
//this is a bold sentence
echo "<b> this is a bold sentence</b>";
//this is a bold word
echo "<br> this is a bold word<b> john</b>";
//this is a bold character
echo "<br>this is a bold character<b> A</b>";
//this is a bold paragraph
echo "<br> this is a bold paragraph<b>
Lorem ipsum dolor sit amet, consectetur adipiscing elit,<br>
sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.<br>
Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris
nisi ut aliquip ex <br>
ea commodo consequat. Duis aute irure dolor in </b>";
?>
Output
this is a bold sentence
this is a bold word john
this is a bold character A
this is a bold paragraph Lorem ipsum dolor sit amet, consectetur adipiscing elit,
sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex
ea commodo consequat. Duis aute irure dolor in