Guys, thanks for your suggestions.
Below is the complete link of an example where the Linkman and Wordpress are located.
You can have a look at Linkman script from http://www.phpjunkyard.com/php-link-manager.php
Currently this is the location of my Wordpress.
http://www.raymond.cc/blog/
And this is the location of where I installed Linkman.
http://www.raymond.cc/linkman/
I want raymond.cc/blog/links page to echo/print out a text file from http://www.raymond.cc/linkman/linkinfo.txt
I think this should be the original php file taken from linkman folder that echo/print out the linkinfo.txt
<?php
require "settings.php";
require_once("header.txt");
$lines = array ();
$lines=file($settings['linkfile']);
echo "<p class=\"linkman\">";
foreach ($lines as $thisline)
{
$thisline=trim($thisline);
if (!empty($thisline)) {
list($name,$email,$title,$url,$recurl,$description)=explode($settings['delimiter'],$thisline);
if ($settings['clean'] != 1) {$url="go.php?url=".$url;}
echo "$title - $description<br>\n";
}
}