I would like to open the following link in a new window , can you pls. help me -
<?php
$userfile= file_get_contents("out.txt");
$users = explode("\n",$userfile);
foreach ($users as $user) {
list($name, $cor) = explode(" ", $user);
echo "<a href=\"http://db.yeastgenome.org/cgi-bin/locus.pl?locus=".$name."\">$name </a>"."<br/>";
}
?>
thanks in advanced