html - Output 1 Row only of PHP Array as Bold Text

Solution:

Well, since you're outputting it as a string with HTML tags, you could just do it like so

$subject [1] = '<b>'.$rows['First_Name'].'</b>';

It's dirty but I believe it should do the trick. Unless, of course, if you're going to be using the information somewhere else, my solution won't be of much help, I think.

Answer

Solution:

You can do something like this

p::first-line{
font-weight: bold;
}

Source