I am facing the issue is mysql output result contain phone number [pnone] it should be clickable tel: link, please help me , code bellow
Asked
Active
Viewed 560 times
0
-
2Possible 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 Answers
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>

Shivaji Rao
- 19
- 6