[PHP] printer_open() command in redhatlinux 9, php 4.3.9

2005-01-16 Thread Muditha Fernando
Hi, Can printer_open() command be used in redhatlinux 9, php 4.3.9. It works fine under win2000. Pls help. Regards Muditha Fernando -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] printer_open

2003-01-05 Thread Kathy
Hi, I'm Kathy and just a beginner in php. I'm using the printer_open and printer_draw_text etc. to print a report. It works in my localhost, but when I run it in a remote server, the error message 'couldn't connect to the printer' shown. I think this was caused by no printer was setup in

Re: [PHP] printer_open

2003-01-05 Thread Leif K-Brooks
PHP is server-side. You can't do anything to the client besides give them data. This may be possible with javascript (I don't think so, though), but not with PHP. Kathy wrote: Hi, I'm Kathy and just a beginner in php. I'm using the printer_open and printer_draw_text etc. to print a

Re: [PHP] printer_open

2003-01-05 Thread Jason Wong
On Tuesday 07 January 2003 05:56, Kathy wrote: Hi, I'm Kathy and just a beginner in php. I'm using the printer_open and printer_draw_text etc. to print a report. It works in my localhost, but when I run it in a remote server, the error message 'couldn't connect to the printer' shown. I

[PHP] printer_open

2002-05-21 Thread J. Wharton
I'm attempting to use the printer_open function in php, and am getting the following error: Fatal error: Call to undefined function: printer_open() in c:\program files\apache group\apache\htdocs\new\aview.php on line 209 I've tried commenting and uncommenting the extension=php_printer.dll line

Re: [PHP] printer_open

2002-05-21 Thread Sqlcoders.com Programming Dept
that you have the php_printer dll and that it's in the appropriate directory. HTH, Dw Sqlcoders.com Dynamic data driven web solutions - Original Message - From: J. Wharton [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: May 21 2002 11:19 AM Subject: [PHP] printer_open I'm attempting

Re: [PHP] printer_open

2002-05-21 Thread 1LT John W. Holmes
] Cc: J. Wharton [EMAIL PROTECTED] Sent: Wednesday, May 22, 2002 1:29 AM Subject: Re: [PHP] printer_open Hiya!, Have you tried adding this line in the very top of your script (just inside the opening ? ): DL(php_printer.dll); (this call to load a dynamic extension must occur before any printer_

Re: [PHP] printer_open

2002-05-21 Thread J. Wharton
To: php general [EMAIL PROTECTED] Cc: J. Wharton [EMAIL PROTECTED] Sent: Wednesday, May 22, 2002 1:29 AM Subject: Re: [PHP] printer_open Hiya!, Have you tried adding this line in the very top of your script (just inside the opening ? ): DL(php_printer.dll); (this call to load a

Re: [PHP] printer_open

2002-05-21 Thread Sqlcoders.com Programming Dept
tag) body onLoad=window.print(); HTH, Dw Sqlcoders.com Dynamic data driven web solutions - Original Message - From: J. Wharton [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: May 21 2002 12:13 PM Subject: Re: [PHP] printer_open I wish they had noted this in the PHP manual. Does anyone know