I am facing the issue is mysql output result contain phone number [pnone] it should be clickable tel: link, please help me , code bellow

I am facing the issue is mysql output result contain phone number [pnone] it should be clickable tel: link, please help me , code bellow

This should work:
<a href="tel:$row['Phone']">$row["Phone"]</a>
Here's more info: https://css-tricks.com/the-current-state-of-telephone-links/
Its works for me,
<td data-title="Phone" class="numeric"> <a href="tel:'.$row["Phone"].'">'.$row["Phone"].'</a></td>