Hello B,
I just submitted directly to the cgi script and did it with a GET and
it worked so that is not the problem. Any other suggestions

Sunday, July 21, 2002, 4:52:09 PM, you wrote:


BigDog> In your example you are using the method of POST to pass the form data to
BigDog> the cgi script.  However, when you pass the data to the cgi script from the
BigDog> php script you are using the GET method to pass the data.

BigDog> Check and see if the cgi can accept with METHOD="GET"

BigDog> .: B i g D o g :.


BigDog> ----- Original Message -----
BigDog> From: <[EMAIL PROTECTED]>
BigDog> To: "php-general" <[EMAIL PROTECTED]>
BigDog> Sent: Sunday, July 21, 2002 5:46 PM
BigDog> Subject: [PHP] Submitting to cgi script


>> How can I do this
>>
>> I have a form that I want to submit to a second php script that in turn
>> submits to a cgi script but I can not get it to work. If I submit
>> from the form to the cgi script it works just fine. But there are
>> something that I need to do with the data besides submitting to the
>> cgi script. Could you look at the sample code below and see if I am
>> doing something wrong. I hope this makes sense I am not quit sure how
>> to ask what I want to know
>> If I was submitting directly to the cgi script the form action would
>> look like this
>>  <FORM ACTION="/cgi-bin/siteUserEmail/siteUserEmail.cgi" METHOD="POST">
>>
>>
>>
>> <FORM ACTION="siteUserEmail.php" METHOD="POST">
>> <INPUT TYPE="TEXT" NAME="forwardaddr" SIZE="32" VALUE="">
>> <TEXTAREA NAME="aliases" ROWS="5" COLS="32"></TEXTAREA>
>> <INPUT TYPE="CHECKBOX" NAME="vacationmode" VALUE="on" >
>> <TEXTAREA NAME="vacationmsg" ROWS="5" COLS="32"></TEXTAREA>>
>> <INPUT TYPE="HIDDEN" NAME="name" SIZE="-1" VALUE="tester54321">
>> <INPUT TYPE="HIDDEN" NAME="group" SIZE="-1" VALUE="site53">
>> <INPUT TYPE="HIDDEN" NAME="page" SIZE="-1" VALUE="siteuseremail">
>> <input type="submit" name="Submit" value="submit">
>> </FORM>
>>
>> The siteUserEmail.php file
>> <?
>> $cmd="/cgi-bin/siteUserEmail/siteUserEmail.cgi?forwardaddr=$forwardaddr
>> &aliases=$aliases&vacationmode=$vacationmode&vacationmsg=$vacationmsg
>> &name=$name&group=$group&page=$page";
>> exec($cmd);
>> ?>
>> --
>> Best regards,
>>  rdkurth                          mailto:[EMAIL PROTECTED]
>>
>>
>> --
>> PHP General Mailing List (http://www.php.net/)
>> To unsubscribe, visit: http://www.php.net/unsub.php




-- 
Best regards,
 rdkurth                            mailto:[EMAIL PROTECTED]


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to