| How can I make sure that my customers don’t remove my copyright from my PHP program?

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:

  1. PHP programming help using forms? Nathan asked the question: When I run this on my...
  2. PHP programming help using forms? Nathan asked the question: When I run this on my...
  3. Web Programming problem? PHP? wayiran asked the question: This is the codes of a...
  4. Web Programming problem? PHP? wayiran asked the question: This is the codes of a...
  5. 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 ,

Comments

3 Responses to “How can I make sure that my customers don’t remove my copyright from my PHP program?”

  1. DNfer on June 1st, 2008 10:08 pm

    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

  2. Chris C on June 2nd, 2008 3:00 am

    Well, the best way I can think of (without having to change the PHP parser,) would be to:
    echo “

  3. aryaxt on June 4th, 2008 1:10 pm

    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
    }