nishanperera Posted July 4, 2020 Share Posted July 4, 2020 Hi, I want to make the phone number in the below code as clickable. Below is the code php and mysql code I used. <?php $connect = mysqli_connect('localhost', 'root', '1234', 'contact'); $query ='SELECT * FROM tbl_employee ORDER BY ID DESC'; $result = mysqli_query($connect, $query); ?> <table id="employee_data" class="table table-striped table-bordered"> <thead> <tr> <td>Name</td> <td>Location</td> <td>Department</td> <td>Phone Number</td> </tr> </thead> <?php while($row = mysqli_fetch_array($result)) { echo ' <tr> <td>'.$row["name"].'</td> <td>'.$row["location"].'</td> <td>'.$row["department"].'</td> <td>'.$row['phone_number'].'</td> </tr> '; } ?> </table> Quote Link to comment Share on other sites More sharing options...
gw1500se Posted July 4, 2020 Share Posted July 4, 2020 What do you want it to do when clicked? You can either make is a link (<a> tag) or a button (<button> tag). In both cases you need to put the table in a form. Quote Link to comment Share on other sites More sharing options...
benanamen Posted July 4, 2020 Share Posted July 4, 2020 <a href="tel:123-456-7890">123-456-7890</a> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.