Hello,
I am looking for a tool of some description that will automatically create 100's of links like <a href="/my-keyword.html">My Keyword</a> from a text document.
Does anything like this exist?
Hello,
I am looking for a tool of some description that will automatically create 100's of links like <a href="/my-keyword.html">My Keyword</a> from a text document.
Does anything like this exist?
Subject (02-11-2010)
Does nothing like this exist??
So for example I will have a list of keywords like
wardrobes
cupboards
carpets
curtains
double beds
and i want some script or software that will automatically create the links like
<a href="wardrobes.htm">wardrobes</a>
<a href="cupboards.htm">cupboards</a>
<a href="carpets.htm">carpets</a>
etc etc...
Any ideas?


This can easily be done in microsoft excel. Hint: http://office.microsoft.com/en-us/ex...geCellContents
MaxBlogPress ***** affiliate is what you need!
you can download it in this thread HERE
have fun!
oh, btw, i hope you were talking about a wordpress site. if not just ignore my post because that is a plugin for wordpress only![]()
PHP Code:<?
$keywords= file("keywords.txt");
foreach($keywords as $word){
echo "<a href=\"".$word.".htm\">".$word."</a><br>";
}
?>
finqfinq (02-11-2010), LiamWallace (02-12-2010), Subject (02-11-2010)
That puts each link in a new table row - not sure if that helps but you get the ideaCode:<? $keywords= file("keywords.txt"); echo "<table>"; foreach($keywords as $word){ echo "<tr><td><a href=\"".$word.".htm\">".$word."</a></td></tr>"; } echo "</table>"; ?>
BotCentral.net:: INSTAGRAM BOT, LIMITED PLACES, 33% OFF - BE QUICK! ::
What will open if you create such links?



The excel concatenate command is your friend
Bookmarks