Re: [PHP] POST method to php page from php page

2005-04-08 Thread Philip Hallstrom
Hello all Does anyone know if its possible to post data using the http POST method to another form using php? Yes. If you search around you'll find some pure-PHP code snippets to do this... or do it yourself... To programmatically make a POST request you need to open a socket connection to the

Re: [PHP] POST method to php page from php page

2005-04-08 Thread M. Sokolewicz
Aurélien Cabezon wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Bob Pilly wrote: | Hello all Hi, | Does anyone know if its possible to post data using the http POST method | to another form using php? | I know its possible to use: | header( "Location: somelocation.php?" .SID&somevar=$somevar

Re: [PHP] POST method to php page from php page

2005-04-08 Thread Aurélien Cabezon
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Bob Pilly wrote: | Hello all Hi, | Does anyone know if its possible to post data using the http POST method | to another form using php? | I know its possible to use: | header( "Location: somelocation.php?" .SID&somevar=$somevar ); | But this uses the G

[PHP] POST method to php page from php page

2005-04-08 Thread Bob Pilly
Hello all Does anyone know if its possible to post data using the http POST method to another form using php? I know its possible to use: header( "Location: somelocation.php?" .SID&somevar=$somevar ); But this uses the GET method any help or pointing me to any relevant documentation would be grea

Re: [PHP] PHP Post method HTTP 404

2005-02-16 Thread Marek Kilimajer
Stefan wrote: Hi I've a strange problem When I try to send a form with method="POST" to a php-file I always get an HTTP 404 error. I really don't know why, because the file exists on the server. What are the logs saying? I remember some problems with IIS + php and post method, it was due to some s

Re: [PHP] PHP Post method HTTP 404

2005-02-16 Thread Richard Lynch
Stefan wrote: > I've a strange problem > When I try to send a form with method="POST" to a php-file I always get an > HTTP 404 error. > I really don't know why, because the file exists on the server. > > I use IIS 5.1 If IIS is mis-configured, we can't help you here... If it's in the PHP code, yo

Re: [PHP] PHP Post method HTTP 404

2005-02-16 Thread Chris Shiflett
--- Stefan <[EMAIL PROTECTED]> wrote: > When I try to send a form with method="POST" to a php-file I always > get an HTTP 404 error. The action attribute of the form tag is what determines the URL that the browser requests. When no resource exists at this URL, you get a 404 response after submitti

Re: [PHP] PHP Post method HTTP 404

2005-02-16 Thread Leif Gregory
Hello Stefan, Wednesday, February 16, 2005, 12:32:55 AM, you wrote: S> I've a strange problem When I try to send a form with method="POST" S> to a php-file I always get an HTTP 404 error. I really don't know S> why, because the file exists on the server. Can you show us the code for the form? -

[PHP] PHP Post method HTTP 404

2005-02-16 Thread Stefan
Hi I've a strange problem When I try to send a form with method="POST" to a php-file I always get an HTTP 404 error. I really don't know why, because the file exists on the server. I use IIS 5.1 Tnx. Stefan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php

Re: [PHP] POST method for hyperlink

2004-01-18 Thread Chris Shiflett
--- Richard Davey <[EMAIL PROTECTED]> wrote: > JH> I am curious if there is anyway to take a variable that is passed > JH> via a URL by a reguler text hyperlink Ex: > JH> http://localhost/Calendar/active_layout.php?d=2.1.2004 > JH> and hide it like you would do with the POST method using forms > >

RE: [PHP] POST method for hyperlink

2004-01-17 Thread Joe Harman
Thanks Richard... I will do some erading on that Cheers! Joe -Original Message- From: Richard Davey [mailto:[EMAIL PROTECTED] Sent: Saturday, January 17, 2004 11:08 PM To: Joe Harman Cc: [EMAIL PROTECTED] Subject: Re: [PHP] POST method for hyperlink Hello Joe, Sunday, January 18

Re: [PHP] POST method for hyperlink

2004-01-17 Thread Richard Davey
Hello Joe, Sunday, January 18, 2004, 3:26:18 AM, you wrote: JH> I am curious if there is anyway to take a variable that is passed via a JH> URL by a reguler text hyperlink JH> Ex: http://localhost/Calendar/active_layout.php?d=2.1.2004 JH> and hide it like you would do with the POST method using

[PHP] POST method for hyperlink

2004-01-17 Thread Joe Harman
Hello, I am curious if there is anyway to take a variable that is passed via a URL by a reguler text hyperlink Ex: http://localhost/Calendar/active_layout.php?d=2.1.2004 and hide it like you would do with the POST method using forms Ex: http://localhost/Calendar/active_layout.php Hidden or POS

[PHP] POST Method

2003-08-14 Thread Esteban Fernandez
Hi there Someone know how to capture the vars and values from the POST method, such like a Matts' FormMail, i want to do somethink like that, and i need know how to do it. Thanks in advanced Regards, Esteban. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www

Re: [PHP] POST Method

2003-08-14 Thread Chris Shiflett
--- Esteban Fernandez <[EMAIL PROTECTED]> wrote: > Someone know how to capture the vars and values from the POST method Use $_POST['name_of_variable']. Chris = Become a better Web developer with the HTTP Developer's Handbook http://httphandbook.org/ -- PHP General Mailing List (http://www.

RE: [PHP] post method with fopen

2003-03-28 Thread Jennifer Goodie
7 PM To: [EMAIL PROTECTED] Subject: [PHP] post method with fopen if it possible to send a post data when using fopen? -- Lambert Antonio Re:Site WebWorks and System Solutions -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Fw: [PHP] post method with fopen

2003-03-28 Thread Kevin Stone
- Original Message - From: "Lambert Antonio" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, March 24, 2003 8:16 PM Subject: [PHP] post method with fopen > if it possible to send a post data when using fopen? > > -- > Lambert Antonio >

[PHP] post method with fopen

2003-03-28 Thread Lambert Antonio
if it possible to send a post data when using fopen? -- Lambert Antonio Re:Site WebWorks and System Solutions -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Post method

2003-02-28 Thread Alex Shi
> Curl will let you perform post operationgs, take a look at > http://www.php.net/curl. > > Note you will need to have libcurl installed and PHP will have to be > compiled with curl support. > > There are also probably classes that allow you to do post requests, take > a look at the script reposito

Re: [PHP] Post method

2003-02-28 Thread Jason Sheets
Curl will let you perform post operationgs, take a look at http://www.php.net/curl. Note you will need to have libcurl installed and PHP will have to be compiled with curl support. There are also probably classes that allow you to do post requests, take a look at the script repositories, hotscrip

Fw: [PHP] Post method

2003-02-28 Thread Kevin Stone
s the form which will automatically redirect you to whatever address is specified in the action field. - Kevin - Original Message - From: "Alex Shi" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, February 28, 2003 2:09 PM Subject: [PHP] Post method > Hi

Re: [PHP] Post method

2003-02-28 Thread Joseph W. Goff
Why not use sessions? - Original Message - From: "Alex Shi" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, February 28, 2003 3:09 PM Subject: [PHP] Post method > Hi, > > Any one know in a php script, if it is possible to simulate a post method?

[PHP] Post method

2003-02-28 Thread Alex Shi
Hi, Any one know in a php script, if it is possible to simulate a post method? I mean I want to header() to an url but don't like to embed the parameters into that url. Thanks in advance! Alex Shi -- == Cell Phone Batteries at 30-50%+ off retail

Re: [PHP] POST method not allowed

2002-10-09 Thread Stuart Dallas
Muhammad Khairuzzaman wrote: > Yes, done that too. Have you checked that you don't have method limits in your httpd.conf? That would be my first guess re: the POST issue. Have you checked your register_globals setting in php.ini? That would be my first guess re: the GET variables issue. -- S

Re: [PHP] POST method not allowed

2002-10-09 Thread Muhammad Khairuzzaman
"Timothy J Hitchens" <[EMAIL PROTECTED]> wrote in message 006d01c26f7d$236b39a0$0500a8c0@BAMBINO">news:006d01c26f7d$236b39a0$0500a8c0@BAMBINO... > Have you confirmed that they are php processed... eg made a phpinfo() > page and run it? > > > Timothy Hitchens (HITCHO) > [EMAIL PROTECTED] > > HITCH

RE: [PHP] POST method not allowed

2002-10-09 Thread Timothy J Hitchens
PROTECTED] Subject: Re: [PHP] POST method not allowed "Timothy J Hitchens" <[EMAIL PROTECTED]> wrote in message 006c01c26f7b$529a7530$0500a8c0@BAMBINO">news:006c01c26f7b$529a7530$0500a8c0@BAMBINO... > Are you sure that .php3 files are being processed by PHP ??? >

Re: [PHP] POST method not allowed

2002-10-09 Thread Muhammad Khairuzzaman
"Timothy J Hitchens" <[EMAIL PROTECTED]> wrote in message 006c01c26f7b$529a7530$0500a8c0@BAMBINO">news:006c01c26f7b$529a7530$0500a8c0@BAMBINO... > Are you sure that .php3 files are being processed by PHP ??? > > > Timothy Hitchens (HITCHO) > [EMAIL PROTECTED] > > HITCHO has Spoken! Yes, i've tri

RE: [PHP] POST method not allowed

2002-10-09 Thread Timothy J Hitchens
] POST method not allowed Hi, I'm having problem with processing my form file. It seems that everytime I use the Post method to process the for the browser return : Method Not Allowed The requested method POST is not allowed for the URL /quote.php3. And if i use a GET method, all the variable

[PHP] POST method not allowed

2002-10-09 Thread Muhammad Khairuzzaman
Hi, I'm having problem with processing my form file. It seems that everytime I use the Post method to process the for the browser return : Method Not Allowed The requested method POST is not allowed for the URL /quote.php3. And if i use a GET method, all the variables are returned as 0 (null ,

[PHP] POST method not allowed

2002-10-09 Thread Muhammad Khairuzzaman
Hi, I'm having problem with processing my form file. It seems that everytime I use the Post method to process the for the browser return : Method Not Allowed The requested method POST is not allowed for the URL /quote.php3. And if i use a GET method, all the variables are returned as 0 (null ,

Re: [PHP] POST method invocation of C CGI

2001-06-27 Thread Richard Lynch
> I have a compiled C CGI that accepts POST method calls, reading > information off of stdin, and returning its results to stdout. > > I need to be able to invoke this from a PHP module, with the PHP module > loading the POST data for the CGI to fetch, and be able to collect the > output that the

[PHP] POST method invocation of C CGI

2001-06-26 Thread Meles Meles
I have a compiled C CGI that accepts POST method calls, reading information off of stdin, and returning its results to stdout. I need to be able to invoke this from a PHP module, with the PHP module loading the POST data for the CGI to fetch, and be able to collect the output that the CGI returns

Re: [PHP] POST Method.

2001-03-15 Thread Nick Davies
I'm going to use the curl libs. But FYI i was wanting to forward the data again using post. On Thu, 15 Mar 2001, Keith Vance wrote: > You could can "forward" posted data the same way if you wanted to. I don't > know what you mean by forwarding. But if you had one script that was a > form and t

Re: [PHP] POST Method.

2001-03-15 Thread Keith Vance
You could can "forward" posted data the same way if you wanted to. I don't know what you mean by forwarding. But if you had one script that was a form and the action was set to a script called action.php and then you wanted to pass that data to yet another script, you could pass the values in the

Re: [PHP] POST Method.

2001-03-15 Thread Peter
Check out using php_curl HTH Peter "Nick Davies" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > How do i forward POST data from a php script. Obviously GET is simple > (just script.php?$QUERY_STRING) but how does it work with post? > > > Thanks. > > Nick.

[PHP] POST Method.

2001-03-15 Thread Nick Davies
How do i forward POST data from a php script. Obviously GET is simple (just script.php?$QUERY_STRING) but how does it work with post? Thanks. Nick. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]