$tegs = array('a', 'abbr', 'acronym', 'address', 'b', 'basefont', 'bdo', 'big', 'blink', 'blockquote', 'cite', 'del', 'dfn', 'em', 'font', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'i', 'ins', 'kbd', 'mark', 'nobr', 'p', 'plaintext', 'q', 'rp', 'rt', 'ruby', 's', 'samp', 'small', 'strike', 'strong', 'sub', 'sup', 'tt', 'u', 'var', 'wbr', 'xmp');
<a>Я съел 5 собак</a>
, но не так <a>456.234.34</a>
если честно, я в первый раз вижу, что бы кто-то хотел прочесть этот файл.
<?php
for ($i=0; $i < count($notes_result["Id"]); $i++) {
echo(
'<div class="note-in-menu">
<h5 class="note-name">'.$notes_result["note_name"][$i].'</h5>
<p class="note-description">'.$notes_result["note_description"][$i].'</p>
<button class="show-note">Показать</button>
</div>');
};
?>