i want so show a telephone number as a "telephonelink" on my website. i show the telephone-numbers with the following php code in my template:
<?php if($employeeObj->getEmail() != "" && $employeeObj->getEmail() != "-"){ ?>
<tr>
<td colspan="2"><?=$employeeObj->getEmail()?></td>
</tr>
how can i implement the telephone number as a link in this php code?
can anybody help me?