Re: [PHP] Re: protecting web page

2004-05-09 Thread Daniel Clark
I agree. Once the screen, text, or picture is on the clients machine they have a copy of it. Petr U. wrote: On Sat, 08 May 2004 21:00:43 -0500 Anguz [EMAIL PROTECTED] wrote: Do you know any solution that can help me. I've find an application named HTML guard but it only work for

[PHP] Re: protecting web page

2004-05-08 Thread Anguz
[EMAIL PROTECTED] wrote: Hi, i'm designing a web application and i want to protect my web page from printing and if possible want to protect source code too. Do you know any solution that can help me. I've find an application named HTML guard but it only work for static html pages. I need more a

Re: [PHP] Re: protecting web page

2004-05-08 Thread Petr U.
On Sat, 08 May 2004 21:00:43 -0500 Anguz [EMAIL PROTECTED] wrote: Do you know any solution that can help me. I've find an application named HTML guard but it only work for static html pages. I need more a class or function to prevent for printing. There is _no way_ to really

Re: [PHP] Re: protecting web page

2004-05-08 Thread Travis Low
Petr U. wrote: On Sat, 08 May 2004 21:00:43 -0500 Anguz [EMAIL PROTECTED] wrote: Do you know any solution that can help me. I've find an application named HTML guard but it only work for static html pages. I need more a class or function to prevent for printing. There is _no way_ to

Re: [PHP] Re: protecting web page

2004-05-08 Thread Ashley M. Kirchner
Urgh. I replied to Travis only, instead of the list. Sorry Travis, didn't mean to. Here's a repost to the list: -- Travis Low wrote: If it's really important, you might be able to generate non-printable PDF files, or generate images containing the desired text, or stuff like

[PHP] Re: protecting web page

2004-05-05 Thread Gerben
The best I can do is the following which would protects from printing, but you should check cause not all browsers support css the way they should. html head style media=print body{display:none;} /style /head body /body /html greetings [EMAIL PROTECTED] wrote in message

Re: [PHP] Re: protecting web page

2004-05-05 Thread Stephen Allen
On Wed, May 05, 2004 at 07:28:01PM +0200 or thereabouts, Gerben wrote: The best I can do is the following which would protects from printing, but you should check cause not all browsers support css the way they should. html head style media=print body{display:none;} /style