I have the following code in my chatbox. I need to make the new incoming messages to be read by screen reader. If I use Aria Live anywhere in this code I am getting an error. Can anyone help me with this?
while($row = $resource->fetch_assoc())
{
echo "<div id='cbox'>";
echo "<div>
<b id='uname'>{$row['Name']} </b>
<i id='time'>{$row['Logs']} </i>
<span id='cmsg'>{$row['Message']}</span>
</div>";
}