This question already has answers here:
Answer
Solution:
<bold>
is HTML, not a valid PHP construct.
You can have HTML in the same file, although, not usually best practice unless it is a template, but you must close the PHP tag (<?php ... ?><bold><?php ...
) before writing the HTML.
I'm not sure the purpose of your <bold>
tags in this code, however. It seems like an oversight.
Source