anonpiss Posted April 17, 2006 Share Posted April 17, 2006 I am trying to integrate Linkman (Link Exchange script) into my wordpress.Currently this is the structure of my Wordpress[a href=\"http://www.website.com/blog/\" target=\"_blank\"]http://www.website.com/blog/[/a]And this is the structure of my linkman[a href=\"http://www.website.com/linkman/\" target=\"_blank\"]http://www.website.com/linkman/[/a]I want [a href=\"http://www.website.com/blog/wp-content/themes/kubrick/page.php\" target=\"_blank\"]http://www.website.com/blog/wp-content/the...ubrick/page.php[/a] to echo/print out a text file from [a href=\"http://www.website.com/linkman/linkinfo.txt\" target=\"_blank\"]http://www.website.com/linkman/linkinfo.txt[/a]I think this should be the original php file taken from linkman folder that echo/print out the linkinfo.txt[code]<?phprequire "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 "<a href=\"$url\" target=\"_new\" class=\"linkman\">$title</a> - $description<br>\n"; }}?>[/code]Problem is, according to the structure of where the files is, I can't use the code above.How should I modify them? I tried changing around but couldn't get it to work.Would really appreciate any help... Thanks in advanced. Quote Link to comment Share on other sites More sharing options...
anonpiss Posted April 18, 2006 Author Share Posted April 18, 2006 Anyone? :( Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.