Re: [PHP-WIN] fastcgi on windows standalone

2004-02-03 Thread Thierry Bothorel
Yes I confirm, it works well with 4.3.2. -- Thierry Bothorel (Tobias Schlitt) "John Lim" <[EMAIL PROTECTED]> a écrit dans le message de news: [EMAIL PROTECTED] > Hi, for PHP 4.3.x info with FastCGI, have a look at > http://php.weblogs.com/fastcgi_with_php_and_iis > > PS: Shane's instructions wor

[PHP-WIN] Thanks for everyone's help!

2004-02-03 Thread Marlene Burckhalter
Thanks to all. Somehow I got it working. I am not sure what I was doing wrong. I made a lot of changes. You know how debugging goes. Sometimes you don't know which change made the difference. - - - Marlene

Re: [PHP-WIN] getting error msg

2004-02-03 Thread Alexander HANNEL
which operating system ? > Hi, > Will someone help me, please? > > I am trying to write some PHP coding to process text that was entered > into a form by a user. When the SUBMIT button is clicked, I get this > message: > > FORBIDDEN > You don't have permission to access /foldername/< on this

Re: [PHP-WIN] getting error msg

2004-02-03 Thread Ben
Marlene, Seems like your scripts need the appropriate permissions to access the database directory, using the local account assigned for your Web server to process requests. ~ Ben - Original Message - From: "Marlene Burckhalter" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday

[PHP-WIN] getting error msg

2004-02-03 Thread Marlene Burckhalter
Hi, Will someone help me, please? I am trying to write some PHP coding to process text that was entered into a form by a user. When the SUBMIT button is clicked, I get this message: FORBIDDEN You don't have permission to access /foldername/< on this server. Does anyone have any ideas about why

RE: [PHP-WIN] Converting from ASP to PHP

2004-02-03 Thread Gryffyn, Trevor
> -Original Message- > From: Duane Lakoduk [mailto:[EMAIL PROTECTED] > Sent: Monday, February 02, 2004 3:27 PM > > I have been developing ASP sites and applications for about 7 years. > Recently, I have been considering doing some of my new > development projects in PHP. Depending on

Re: AW: [PHP-WIN] imitating browser

2004-02-03 Thread Justin Patrin
Sven Schnitzke wrote: Hi, may I assume you want to automatically feed the otherwise human answers to the dialog presented by the search engine/catalog ? This is possible but at least a little tedious. First you shold make sure that there positively isn't any HTTP RPC (no misspelling, I mean remot

[PHP-WIN] Encryption, Decryption

2004-02-03 Thread Alexander HANNEL
quick question. have someone a better solution for link encryption? here is mine --- but it suxx,... often the links are too long have someone an better code +hoping+ or even an documention for self-coding? greetz CBQ -- GMX ProMail (250 MB Mailbox, 50 FreeSMS, Viren

RE: [PHP-WIN] building a string question

2004-02-03 Thread George Pitcher
Ron, What I do is this: Firstly, $howmany is passed as a final loopcounter from the form. for ($index = 1; $index < $howmany; $index++){ $varname = 'varname'.$index; $varname = $_POST[$varname]; //repeat process for $vars and do something } It works for me. George in O

Re: [PHP-WIN] building a string question

2004-02-03 Thread Stuart
Herhuth, Ron wrote: for($i=0;$i<$_POST['numberOfAmendments'];$i++) { $amendmentNumber = $_POST['amendmentID_$i']; } Replace your single quotes with double quotes. Variable substitution is not performed on single-quoted strings. -- Stuart -- PHP Windows Mailing List (http://www.php.net/) To unsub

Re: [PHP-WIN] building a string question

2004-02-03 Thread Donatas
You either have to use double quotes to get $i parsed like this: $amendmentNumber = $_POST["amendmentID_$i"]; or you can use single quotes but you have to use $i as variable and not as part of a string like this: $amendmentNumber = $_POST['amendmentID_'.$i]; Cheers, /Donatas Herhuth, Ron wrote

Re: [PHP-WIN] building a string question

2004-02-03 Thread Ignatius Reilly
Syntax error. Try instead $amendmentNumber = $_POST['amendmentID_'.$i]; HTH Ignatius _ - Original Message - From: "Herhuth, Ron" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, February 03, 2004 16:58 Subject: [PHP-WIN] building a string question I am

[PHP-WIN] building a string question

2004-02-03 Thread Herhuth, Ron
I am pulling my hair out here...and I'm thinking someone might be able to help me. My situation is that I have a series of dynamic form elements that are created on a previous page and now on the process page I am trying to cylce through them...but I can't seem to build the string I need to extra

php-windows Digest 3 Feb 2004 14:41:21 -0000 Issue 2106

2004-02-03 Thread php-windows-digest-help
php-windows Digest 3 Feb 2004 14:41:21 - Issue 2106 Topics (messages 22712 through 22717): Re: tutorial 22712 by: George Pitcher 22714 by: Svensson, B.A.T. (HKG) Mcrypt and IDEA 22713 by: re_action Re: imitating browser 22715 by: Sven Schnitzke my changes i

RE: [PHP-WIN] User authentication problem

2004-02-03 Thread Symeon Charalabides
> What do mean with "wont work"? Does the if expression > allway evaluate to false, or what? > Indeed. 3 attempts and I'm out. On exiting, the 2 variables still contain empty strings. > By the way, you might like to check out: > > http://nl.php.net/manual/en/security.registerglobals.php > I d

[PHP-WIN] my changes in php.ini are not recognized

2004-02-03 Thread Burckhardt Übersohn
I am just starting in php (but 10 years experience in developping, last 5 years in JAVA). I have installed on a Windows 2000 PC: Apache 2.0 as localhost-server, MySQL 4.0.17 and PHP 4.3.4-Win32. All parts seem to work properly. My first steps into php also looked quite well. Next level: sending HTM

AW: [PHP-WIN] imitating browser

2004-02-03 Thread Sven Schnitzke
Hi, may I assume you want to automatically feed the otherwise human answers to the dialog presented by the search engine/catalog ? This is possible but at least a little tedious. First you shold make sure that there positively isn't any HTTP RPC (no misspelling, I mean remote proc call) access to

RE: [PHP-WIN] tutorial

2004-02-03 Thread Svensson, B.A.T. (HKG)
From: Trystano >If you a beginner, then the online manual might not be a good start. Might so be, but on the other hand, some languages are better suited to start to learn than others. (If we now are talking about learning to do programming, and not just learning php). It use to be said: BASIC,

[PHP-WIN] Mcrypt and IDEA

2004-02-03 Thread re_action
Hi everyone. Does anybody now such thing: Latest mcryptlib, or some old version of it support the IDEA algorithm ? -- Best regards, re_action mailto:[EMAIL PROTECTED] -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP-WIN] tutorial

2004-02-03 Thread George Pitcher
This reminds me of how a few years ago whilst working on a university library project I was introduced to programming. Being Mac-based, I decided to use Frontier, to the horror of everyone else who tried (unsuccessfully) to get me onto Perl. So I checked the library for a Perl book and the only one