you can make a text file with a link on each line:
example: links.txt
http://phpbuilder.com
[url]http://php.net[/url]
[url]http://codenewbie.com[/url]
now you can do cool things with this txt file with the file() function in php.
example: test.php
<?
$link_array = file("links.txt");
echo count($link_array) . " links found. <br><br>\n";
foreach($Link_array as $each){
echo $each . "<br>\n";
}
?>
the file() function creates an array out of the file you specify. it puts each line of the text file into one element of the array.
hope this helps.