* Thus wrote [EMAIL PROTECTED] ([EMAIL PROTECTED]): > 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.
You can prevent the average joe from printing by putting some css
in your document:
@media print { body { display: none; } }
Curt
--
"I used to think I was indecisive, but now I'm not so sure."
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

