The following php code is printing the echo statement using standard print. However, I would like it to print the text as though it was printed using the html code below it.
How do i go about formatting the php "echo" statement?
if ( $numrows < 999 )
{
echo "Search Results: $numrows found." ;
}
?>
<h4>Search Result: <?=$numrows?> found.</h4>