Y T Nuke  
Results 1 to 9 of 9
Hello, I am looking for a tool of some description that will automatically create 100's ...
  1. #1
    finqfinq is offline Newbies
    Join Date
    Jan 2010
    Posts
    25
    Reputation
    9
    Thanks
    1
    Thanked 3 Times in 3 Posts

    Default Script to Automatically Create links from Provided Keywords??

    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?

  2. The Following User Says Thank You to finqfinq For This Useful Post:

    Subject (02-11-2010)

  3. #2
    finqfinq is offline Newbies
    Join Date
    Jan 2010
    Posts
    25
    Reputation
    9
    Thanks
    1
    Thanked 3 Times in 3 Posts

    Default Re: Script to Automatically Create links from Provided Keywords??

    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?

  4. #3
    Standard Toaster is offline Regular Member
    Join Date
    Aug 2009
    Posts
    233
    Reputation
    15
    Thanks
    219
    Thanked 153 Times in 49 Posts

    Default Re: Script to Automatically Create links from Provided Keywords??

    This can easily be done in microsoft excel. Hint: http://office.microsoft.com/en-us/ex...geCellContents

  5. #4
    SpiderWebMaster's Avatar
    SpiderWebMaster is offline Power Member
    Join Date
    Jan 2009
    Location
    /dev/null
    Age
    32
    Posts
    616
    Reputation
    36
    Thanks
    197
    Thanked 503 Times in 150 Posts

    Default Re: Script to Automatically Create links from Provided Keywords??

    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

  6. #5
    wickedguy's Avatar
    wickedguy is offline Senior Member
    Join Date
    Jul 2009
    Location
    BHW--> South Africa
    Posts
    1,144
    Reputation
    591
    Thanks
    154
    Thanked 1,138 Times in 320 Posts

    Default Re: Script to Automatically Create links from Provided Keywords??

    PHP Code:
    <?

    $keywords
    file("keywords.txt");

    foreach(
    $keywords as $word){
    echo 
    "<a href=\"".$word.".htm\">".$word."</a><br>";
    }

    ?>

  7. The Following 3 Users Say Thank You to wickedguy For This Useful Post:

    finqfinq (02-11-2010), LiamWallace (02-12-2010), Subject (02-11-2010)

  8. #6
    finqfinq is offline Newbies
    Join Date
    Jan 2010
    Posts
    25
    Reputation
    9
    Thanks
    1
    Thanked 3 Times in 3 Posts

    Default Re: Script to Automatically Create links from Provided Keywords??

    Quote Originally Posted by wickedguy View Post
    PHP Code:
    <?

    $keywords
    file("keywords.txt");

    foreach(
    $keywords as $word){
    echo 
    "<a href=\"".$word.".htm\">".$word."</a><br>";
    }

    ?>
    Thanks, this is perfect. Just what I was looking for


    ...now how do I put that list into tables..

  9. #7
    fatboy's Avatar
    fatboy is online now Jr. VIP
    Join Date
    Aug 2008
    Location
    UK
    Posts
    907
    Reputation
    412
    Blog Entries
    1
    Thanks
    273
    Thanked 1,582 Times in 372 Posts

    Default Re: Script to Automatically Create links from Provided Keywords??

    Code:
    <?
    
    $keywords= file("keywords.txt");
    
    echo "<table>";
    foreach($keywords as $word){
    echo "<tr><td><a href=\"".$word.".htm\">".$word."</a></td></tr>";
    }
    
    echo "</table>";
    ?>
    That puts each link in a new table row - not sure if that helps but you get the idea

    BotCentral.net:: INSTAGRAM BOT, LIMITED PLACES, 33% OFF - BE QUICK! ::

  10. #8
    badcredit's Avatar
    badcredit is offline Newbies
    Join Date
    Jan 2010
    Posts
    11
    Reputation
    10
    Thanks
    4
    Thanked 0 Times in 0 Posts

    Default Re: Script to Automatically Create links from Provided Keywords??

    What will open if you create such links?

  11. #9
    blight12 is offline Jr. VIP
    Join Date
    Mar 2009
    Posts
    300
    Reputation
    29
    Thanks
    106
    Thanked 58 Times in 38 Posts

    Default Re: Script to Automatically Create links from Provided Keywords??

    The excel concatenate command is your friend

Dot Gov Backlinks Sale


Smarter Submit

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
  SEnukeX SEO Software
Proudly Powered by Hostwinds.com Web Hosting Click Here For Exclusive BHW Discounts!

Cheap Web Hosting


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75