__________________
Chris. ->> Please login or register to view this content. Registration is FREE <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- Is SEO the only industry where all the cowboys are Indians?
You can google for ways to obfuscate your code server side using php or client side using javascript. There are many many options and ways to do this. Remember though any method of obfuscating code can be cracked, but for a typical screen scraping bot you'll be okay.
__________________ Please login or register to view this content. Registration is FREE
Mr. Miller and chrishirst are on the money.
example:
Putting this on your website:
HTML Code:
<script language="JavaScript" type="text/javascript">
var i,y,x="3c68746d6c3e0d0a3c686561643e0d0a3c7469746c653e526f6220697320636f6f6c3c2f7469746c653e0d0a3c2f686561643e0d0a3c626f64793e0d0a48656c6c6f20576f726c64210d0a3c2f626f64793e0d0a3c2f68746d6c3e";y='';for(i=0;i<x.length;i+=2){y+=unescape('%'+x.substr(i,2));}document.write(y);
</script>
is actually:
HTML Code:
<html><head><title>Rob is cool</title></head><body>
Hello World!
</body></html>
So when someone visits your site they will see Rob is cool in their browser. A bot will see nothing. But the downfall of that is search engine spiders will also see nothing.
What exactly are you trying to hide? If its a form, there are much better ways of preventing bots such as captcha (Completely Automated Public Turing Test to Tell Computers and Humans Apart) etc...
__________________ Please login or register to view this content. Registration is FREE