I found that to be VERY ineffective as people could always just hit print screen to copy the image...
This is a neat little trick I figured out (because I'm going to be using it on a new site that i may or may not do, for those of you who know me by now lol) that will stop people from being able to copyright TEXT ONLY from your screen.
While they can STILL hit print screen to copy the text, it's ineffective as they'd have to retype it all anyways, ect.. And most people arent that desperate...
Make a page and put this:
CODE
<form action="copyproof.php" method="post">
<textarea name="text">
</textarea>
<input type="submit">
</form>
<textarea name="text">
</textarea>
<input type="submit">
</form>
And then make a page called copyproof.php and put this
CODE
<?php
$text = $_POST['text'];
$text = str_replace(" ","<font style='font-size: 3pt; visibility: hidden;'>X</font>",$text);
?>
<b>PREVIEW</b><br>
<?php echo $text;?>
<br><br>
<b>CODE:</b><br>
<textarea>
<?php echo $text;?>
</textarea>
$text = $_POST['text'];
$text = str_replace(" ","<font style='font-size: 3pt; visibility: hidden;'>X</font>",$text);
?>
<b>PREVIEW</b><br>
<?php echo $text;?>
<br><br>
<b>CODE:</b><br>
<textarea>
<?php echo $text;?>
</textarea>
Then use the form that you did..
Basically what this does is.. if you type...
a b c d e f g h i j k l m n o p q r s t u v w x y z
and somebody tries to copy it.. when they hit PASTE onto notepad or something it will come out looking like:
aXbXcXdXeXfXgXhXiXjXkXlXmXnXoXpXqXrXsXtXuXvXwXxXyXz
But, on your page it will look like they're simple spaces
A demo can be found here: http://www.thinkcreactive.com/COPYRIGHTTHEFT.PHP
