How can I make sure that my customers don’t remove my copyright from my PHP program?
havenomercy3 asked the question:
I wrote a PHP program and I want to add a line of text to the bottom of a page as a copyright. I don’t want my customers to be able to remove this line. Would it be possible to make it so if they remove it, the program no longer works? or make it complicated to remove?
Related posts:
- PHP programming help using forms? Nathan asked the question: When I run this on my...
- PHP programming help using forms? Nathan asked the question: When I run this on my...
- Web Programming problem? PHP? wayiran asked the question: This is the codes of a...
- Web Programming problem? PHP? wayiran asked the question: This is the codes of a...
- How to fetch a existing rss feed from a website using php. The input for the program must be the website url? karthik mk asked the question: The(php) program input must the...
Filed Under Programming & Design |
Tagged With Copyright, Php Program
Comments
3 Responses to “How can I make sure that my customers don’t remove my copyright from my PHP program?”
encrypt the footer area using base64 (even that can be removed if the user knows little bit of php or IT wizard) or write your own code to check the footer and if different dont work
Well, the best way I can think of (without having to change the PHP parser,) would be to:
echo “
mmm put it in a div named copyright
and at the end of the page or when performing a task search for the object on ur screen named copyright (use javascipt)
var x = document.getElementById(”copyright”)
and only perform the tast if it does exist
and if it doesn’t exist refresh the page
or maybe use this
if (document.getElementById(’copyright’). innerHTML = ‘urCopyRight’ )
{
task
}