I have researched the subject and found a few 'solutions' for my problem but cannot get it to work (I looked at ones in this forum).
I have php while loop that uses variables for db values and wrapped inside <a></a> tags that work as desired. What I want to have the link open in a new tab.
Here is the code I am working with:
<?php
//loop to collect and output db data as hyperlink with target="_blank"
while($row = mysqli_fetch_assoc($result)) {
//output data from each row
echo "<a href='".$row[link]."'>♦ ".$row[title]."</a><br>";
}
?>