[PHP-WIN] Re: How to installl Javascript as a scripting host language ?

2004-02-23 Thread Torsten Schabdach
Hello, there was something liks JS on Server Side. Maybe this could be a startpoint for digging: http://devedge.netscape.com/library/manuals/2000/javascript/1.5/guide/ Not much I know... -- Torsten Lothar Scholz schrieb: Hello, I tried to build the PHP5 Beta 4 on my Win2000 and run into the pro

[PHP-WIN] How to installl Javascript as a scripting host language ?

2004-02-23 Thread Lothar Scholz
Hello, I tried to build the PHP5 Beta 4 on my Win2000 and run into the problem that the "buildconf.bat" script gives me the error message: Input Error: There is no script engine for file extension ".js". How can i install Javascript as a language for the scripting host "cscript.exe" ? -- Best

[PHP-WIN] easiest way to make a complicated PDF form...

2004-02-23 Thread Leo Divinagracia
i know of 2 classes: http://ros.co.nz/pdf/ and http://fpdf.org/ but each one makes you make each element by hand. i mean i have one part of the form with a 35 x 20 element grid area where a user is supposed to fill in. and that is just 1/5 of the 8.5 x 11" page. the rest is just as "compli

Re: [PHP-WIN] how to print to a file by php_printer functions ?

2004-02-23 Thread Frank M. Kromann
$ptr = printer_open($str_printer); printer_set_option($ptr, PRINTER_MODE, "RAW"); printer_set_option($ptr, PRINTER_OUTPUT_FILE, "c:\\test.ptr"); if ($ptr) { printer_write($ptr, $str_text); printer_close($ptr); } else { echo "No default printer found!\n"; } - Frrank > Hi,

[PHP-WIN] PHP execution speed in Win2K

2004-02-23 Thread Alan McDonald
I have my dev machine on Win2003 Server and my production on Win2K Server. Does anyone know of a setting on the win2K env which would cause it to perform very slowly? After letting the app ly dormant for only a few minutes and then requesting a new page, the app is very slow to respond, then it's f

php-windows Digest 23 Feb 2004 17:46:42 -0000 Issue 2135

2004-02-23 Thread php-windows-digest-help
php-windows Digest 23 Feb 2004 17:46:42 - Issue 2135 Topics (messages 22940 through 22940): Re: how to create a 2 colors(B&W) bmp image by php ? 22940 by: Justin Patrin Administrivia: To subscribe to the digest, e-mail: [EMAIL PROTECTED] To unsubscribe from the digest, e-

[PHP-WIN] Re: how to create a 2 colors(B&W) bmp image by php ?

2004-02-23 Thread Justin Patrin
Yuegong wrote: > Hi, > > How to create a 2 colors(B&W) bmp image by php ? > Thanks. > > yuegong > There is no built-in way to do this. The GD library functions only support creation of colored images. You can easily just use black and white. See http://us2.php.net/manual/en/ref.image.