How to open a student details hyper link or button in a new tab. The link is
<a href="student_details.php?details_id=<?php echo $row['id'];?>" class="btn btn-info">Details</a>
How to open a student details hyper link or button in a new tab. The link is
<a href="student_details.php?details_id=<?php echo $row['id'];?>" class="btn btn-info">Details</a>
You could use target
attribute with _blank
value :
<a href="student_details.php?details_id=<?php echo $row['id'];?>"
target="_blank"
class="btn btn-info">Details</a>