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