Re: [PHP] Print page without images

2004-07-20 Thread Curt Zirzow
* Thus wrote Gerben: > css: > > img{display:none;} Dont forget to mention the media: @media print { img { display: none; } } Of course this is going on the assumption you dont have things like Curt -- First, let me assure you that this is not one of those shady pyramid schemes you've b

Re: [PHP] Print page without images

2004-07-20 Thread Gerben
css: img{display:none;} "John W. Holmes" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > francesco[AT]automationsoft[DOT]biz wrote: > > > I know that it is a simple and maybe elementary > > question, but there is in PHP a function, like print > > or echo, that print only the text of

Re: [PHP] Print page without images

2004-07-19 Thread John W. Holmes
francesco[AT]automationsoft[DOT]biz wrote: I know that it is a simple and maybe elementary question, but there is in PHP a function, like print or echo, that print only the text of an HTML page on printer? No. Use CSS. -- ---John Holmes... Amazon Wishlist: www.amazon.com/o/registry/3BEXC84AB3A5E/

[PHP] Print page without images

2004-07-19 Thread francesco[AT]automationsoft[DOT]biz
Hi all, I know that it is a simple and maybe elementary question, but there is in PHP a function, like print or echo, that print only the text of an HTML page on printer? Thanks in advance for help.