Re: AW: [PHP-WIN] PHP 3.0.18 for Windows

2001-01-09 Thread Frank M. Kromann
I have the binaries on my maschine. Do you need other files than php.exe ? - Frank > >I know, I know, and I am already using PHP 4 on many sites. However one >special application is not ready to be upgraded yet, and sticks to PHP 3. As >you may now know, the source code of 3.0.18 is available f

Re: [PHP-WIN] Sorry, answered too quick [waas: SET in MSSQL-query]

2001-01-09 Thread Frank M. Kromann
Textsize and textlimit are connected. Textsize can be set to any value from 0 to textlimit and text limit can be any value from 0 to 2Gb (on 32 bit API) By default textsize and textlimit are set according to your server and library settings but if you have textlimit = 8192 in php.ini you will n

Re: [PHP-WIN] Need help with bugs in my classes

2001-01-09 Thread alain samoun
I don't see $pdf as global var in your class??? Alain IThelp wrote: > > The following is a sample php file that is using the class section, class > box, that are in the file Print.inc > > I get numerous undefined variables errors I put one example of it in my > code. > > Here is the testing.p

php-windows Digest 10 Jan 2001 02:09:50 -0000 Issue 388

2001-01-09 Thread php-windows-digest-help
php-windows Digest 10 Jan 2001 02:09:50 - Issue 388 Topics (messages 4884 through 4895): PHP 3.0.18 for Windows 4884 by: Wenz Christian 4889 by: phobo 4890 by: Wenz Christian 4893 by: Frank M. Kromann Problem after install of PHP4 - Newbie 4885 by: T

Re: [PHP-WIN] php_mssql70.dll Access Denied

2001-01-09 Thread Mauro Boschi
Hi, I'm trying to understand why something like this: DECLARE crs CURSOR KEYSET FOR SELECT title FROM article WHERE pub_id = 1 OPEN crs FETCH ABSOLUTE 3 FROM crs DECLARE @var INT SET @var = 0 WHILE (@var<10) BEGIN FETCH NEXT FROM crs SET @var = @var +1 END CLOSE crs DEALLOCATE crs Doesn't work w

[PHP-WIN] File upload not working

2001-01-09 Thread MacBane
File uploading is not working for me on my server, it is a windows 2000 box running php 4.02 this is my code "); ?> -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list

[PHP-WIN] Equivalent ways to populate an array.

2001-01-09 Thread Paul Meagher
I can successfully populate the params array in this way: class MyDB extends DB { var $params = array( 'phptype' => "mysql", 'hostspec' => "localhost", 'database' => "testdb", 'username