$file = file("archivo.txt");print_r($file);foreach($file as $key=>$val ){ $val = trim($val); if($val) { $valor = explode("|", $val); echo '<a href="'.$valor[1].'" target="_blank">'.$valor[0].'</a><br>'; }}