[PHP-WIN] GD image library

2003-08-19 Thread bart van bavel
I installed php on iis 6.0, but on my page I get the error GD image library is not supported, when I set the extension path and add the extension to the gd image dll the webserver doesn't work anymore, has anybody a solution to my problem? -- PHP Windows Mailing List (http://www.php.net/) To

php-windows Digest 19 Aug 2003 13:04:32 -0000 Issue 1877

2003-08-19 Thread php-windows-digest-help
php-windows Digest 19 Aug 2003 13:04:32 - Issue 1877 Topics (messages 21183 through 21184): Re: Looking for Debugger program. 21183 by: Derrick Hermanson GD image library 21184 by: bart van bavel Administrivia: To subscribe to the digest, e-mail: [EMAIL PROTECTED]

[PHP-WIN] Thank you!

2003-08-19 Thread mforsell
See the attached file for details -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-WIN] Multiple selection in php

2003-08-19 Thread Harpreet
I want to select multiple rows in a list box. I know PHP does not support that.What other ways can I allow user to select multiple options other then giving them check boxes for each option. Help is appreciated. Thanks -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit:

RE: [PHP-WIN] Multiple selection in php

2003-08-19 Thread Charles P. Killmer
select name=test[] multiple size=5 option ... /select PHP will get an array of the selected values in a variable named $test Charles Killmer -Original Message- From: Harpreet [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 19, 2003 4:13 PM To: [EMAIL PROTECTED] Subject: [PHP-WIN]

RE: [PHP-WIN] Multiple selection in php

2003-08-19 Thread John Ellingsworth
PHP can support it easily :) On your form.php put: // OPEN YOUR FORM echo FORM action=keyword.php method=POST name=addKeyword\n; //CREATE A SELECT BOX echo Select MULTIPLE SIZE=10 name=keyword[] class=css\n; // A BUNCH OF CHOICES echo option value=\WORD\WORD\n; //CLOSE

[PHP-WIN] output a table

2003-08-19 Thread Anthony Ritter
Hi... I'm trying to output a table with alternate background color rows. The following snippet outputs a table after connecting to a mySQL database with posts but all of the rows have the same bgcolor. Any help with the syntax will be greatly appreciated. Thank you. Tony Ritter

RE: [PHP-WIN] output a table

2003-08-19 Thread Svensson, B.A.T. (HKG)
Nothing seams to be wrong with the syntacs, but rather the semantics: The statment $posts_info = 0; makes sure you will only print one color. $posts_info should be read from the database along with the other values. -Original Message- From: Anthony Ritter To: [EMAIL PROTECTED] Sent:

php-windows Digest 20 Aug 2003 02:04:07 -0000 Issue 1878

2003-08-19 Thread php-windows-digest-help
php-windows Digest 20 Aug 2003 02:04:07 - Issue 1878 Topics (messages 21185 through 21190): Thank you! 21185 by: mforsell.newarkinone.com Multiple selection in php 21186 by: Harpreet 21187 by: Charles P. Killmer 21188 by: John Ellingsworth output a table

RE: [PHP-WIN] output a table

2003-08-19 Thread Svensson, B.A.T. (HKG)
Read your mail to fast: Change, $posts_info=0;, into: $posts_info++;, then you should get alternate colors. -Original Message- From: Anthony Ritter To: [EMAIL PROTECTED] Sent: 2003-08-20 02:36 Subject: [PHP-WIN] output a table Hi... I'm trying to output a table with alternate