Say I need 200 links and turn them into <a href= bla bla or something like that, anyone have a good tool to do that? Besides search and replace
Best tool to turn links into html code?
Collapse
X
-
-
Just do it via find&replace (for example with Notepad++ or any other text editor).. first you replace 'http..' with '<a href="http...' then the ending
Use coupon 'pauljohn' for a $1 discount at already super cheap NameSilo!
Anal Webcams | Kinky Trans Cams Live | Hotwife XXX Tube | Get your Proxies hereComment
-
Comment
-
hm this one looks pretty useful
Use coupon 'pauljohn' for a $1 discount at already super cheap NameSilo!
Anal Webcams | Kinky Trans Cams Live | Hotwife XXX Tube | Get your Proxies hereComment
-
You could do that in a spreadsheet. Would be pretty easy actually. All copy and paste. And then you concatenate the final cell.
Info1 Info2 Info3 concatVacares - Web Hosting, Domains, O365, Security & More - Paxum and BTC Accepted
Windows VPS now available
Great for TSS, Nifty Stats, remote work, virtual assistants, etc.
Click here for more details.Comment
-
if you want, I can code you something like that for a few bucks... icq: 33375924 or woj#at#wojfun#.#com to discuss detailsCustom Software Development, email: woj#at#wojfun#.#com to discuss details or skype: wojl2000 or gchat: wojfun or telegram: wojl2000
Affiliate program tools: Hosted Galleries Manager Banner Manager Video Manager
Wordpress Affiliate Plugin Pic/Movie of the Day Fansign Generator Zip ManagerComment
-
Comment
-
Yea what I really wanted (and I see now that I was a bit unclear) is to take something like:
title, description, url
and turn that into
<li><a href="url" relation="the same for all" title="description">title</a></li>
And imagine I have a big ass list of urls I wanted to do this with. It's ok though, I'll ring up a mate and have him write me an application that'll do that.But.... I pulled out...Comment
-
would be easy to do in php load a text file, and the 3 variablesYea what I really wanted (and I see now that I was a bit unclear) is to take something like:
title, description, url
and turn that into
<li><a href="url" relation="the same for all" title="description">title</a></li>
And imagine I have a big ass list of urls I wanted to do this with. It's ok though, I'll ring up a mate and have him write me an application that'll do that.Comment
-
something like this maybe?Yea what I really wanted (and I see now that I was a bit unclear) is to take something like:
title, description, url
and turn that into
<li><a href="url" relation="the same for all" title="description">title</a></li>
And imagine I have a big ass list of urls I wanted to do this with. It's ok though, I'll ring up a mate and have him write me an application that'll do that.
exmaple of links.txtCode:<? // title,description,url $fcontents = file('links.txt'); while (list ($line_num, $line) = each ($fcontents)) { $c[$count] = $line; $count++; } shuffle($c); for($i = 0; $i < $count; $i++) { $ln = explode (',', $c[$i]); $title = $ln[0]; $desc = $ln[1]; $url = trim($ln[2]); echo '<li><a href="'.$url.'" title="'.$title.'" rel="external">'.$desc.'</a></li>'; } ?>
Code:google,search engine,http://www.google.com yahoo,shitty search engine,http://www.yahoo.com bing,lame attempt at google,http://www.bing.com
Comment


Comment