-2

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>
D. Rudra
  • 45
  • 6

1 Answers1

0

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>
Syscall
  • 19,327
  • 10
  • 37
  • 52