0
How to make text stored in a function bold while displaying
<? php $row='hello' ; echo "hello". $row; ? > in this I want $row value in bold how to do it
4 odpowiedzi
+ 4
<?php
$row='hello';
echo "hello<b>". $row ."</b>";
?>
+ 2
Using <b></b> tags surrounding the text
+ 1
Thanku very much Anna
0
If I write
echo "hello". <b>$row</b>;
Syntax error unexpected '<' is the error I got