I am getting the following error:
Parse error: syntax error, unexpected ''< / p >' (T_CONSTANT_ENCAPSED_STRING), expecting ',' or ';' in C:\wamp\www\napier_pull\index.php on line 213
My code is as follows:
echo'<div id="myModal'.$title_clean.'" class="modal fade">
<div class="modal-dialog">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 class="modal-title modal-top-health">'.$row["title"].'</h3>
</div>
<a href="'.$row["linktitle_1_url"].'">'.$row["linktitle_1"].'</a>
<p>'.$row["linktitle_1_desc"]'</p>
</div>
';
Line 213 is the last line, however I feel like the problem is in the P tag just before the end. I added spaces to the P tag in the error as it wasn't showing up. I know I've probably left a quote somewhere wrong but no idea where, any ideas?