[Solved] How to make a link this is connected to database in php
I agree with Marcosh (in the comments), so that would give you this code (between the if(…) { and } else): echo “<table><tr><th>ID</th><th>Name</th><th>Phone Number</th><th>Country</th><th>Email</th><th>Send SMS</th><th>Link to page</th></tr>”; // output data of each row while($row = $result->fetch_assoc()) { echo “<tr><td>” . $row[“id”]. “</td><td>” . $row[“firstname”]. ” ” . $row[“lastname”].”</td><td>” . $row[“phonenumber”]. “</td><td>” . $row[“city”]. ” “. … Read more