- Edited
I noted on another thread people mentioning mixing HTML and PHP in example would this be bad practice?
<ul class="times-list">
<li><?php echo $res['streetNumber'] . " " . $res['street']; ?></li>
<li><?php echo $res['town']; ?></li>
<li><?php echo $res['region']; ?></li>
<li><?php echo $res['postcode']; ?></li>
<li><?php echo $res['phone']; ?></li>
</ul>