I have a table with data issued from a PHP request, I want to make phone numbers clickable to allow passing a call if used with mobile device, and if possible to make the whole cell clickable.
My actual PHP code is:
while($row = mysql_fetch_array($result))
{
echo "<tr>";
echo "<td align='center'>" .$row['name']. "</td>";
echo "<td align='center'>" .$row['phone']. "</td>";
echo "</tr>";
}
echo "</table>";