Getting raped in arbitrage

Status
Not open for further replies.


I'm getting content from wikipedia, but it's a pain in the ass removing all the links by hand.

Removing the links would be ideal, but for now you could just put your wiki content in a <div> then style the div so the links look just like your regular content.
 
Removing the links would be ideal, but for now you could just put your wiki content in a <div> then style the div so the links look just like your regular content.

Nice, I didn't think of that.

Here's what I put:
a:link, a:visited, a:hover {color:#535353; background: white;
text-decoration: none; cursor: text;}
 
you try mine?


Not yet- downloaded it last night. You might think its easy, but w/ no PHP coding experience I really don't know too much... will give it a go though since I want to start automating soon, and I'm using that as a framework to describe the process to a coder I am hiring to build a system that also will do KW research and autosubmit the sites... thanks man!:)
 
On the topic of hiding links, here's some javascript to disable the url in the status bar for all links:
<script>
function hidestatus(){
window.status=''
return true
}

if (document.layers)
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)

document.onmouseover=hidestatus
document.onmouseout=hidestatus
</script>
 
On the topic of hiding links, here's some javascript to disable the url in the status bar for all links:
<script>
function hidestatus(){
window.status=''
return true
}

if (document.layers)
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)

document.onmouseover=hidestatus
document.onmouseout=hidestatus
</script>

use

strip_tags()

to strip all html from the text
 
Hey, thanks for the help guys.
I'm making a dollar or two a day. Now I just need to rinse and repeat.
 
Status
Not open for further replies.