0

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

1

Emre Bolat
  • 4,316
  • 5
  • 29
  • 32
  • 2
    Possible duplicate of [How to trigger a phone call when clicking a link in a web page on mobile phone](http://stackoverflow.com/questions/1608548/how-to-trigger-a-phone-call-when-clicking-a-link-in-a-web-page-on-mobile-phone) – chris85 Dec 14 '16 at 03:48

2 Answers2

0

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/

Bhaskar
  • 28
  • 8
0

Its works for me,

<td data-title="Phone" class="numeric"> <a href="tel:'.$row["Phone"].'">'.$row["Phone"].'</a></td>