Re: [PHP] HTTP POST Question

2001-02-20 Thread Julian Wood
t;>>> current >>>> page? Unless someone can show me some code that would do that. >>>> >>> >>> If all you want is to display the remote page, within the local page, >>> then all you need is fpassthru() >>> >>> ex. >&

Re: [PHP] HTTP POST Question

2001-02-20 Thread Jan Grafström
com"; > > > > $fp = fopen($server,"r")// "r" is for reading > > fpassthru($fp); > > > > This will display the results of the remote file (html or whatever) into > > the local file (in this case, your PHP file). > > > > &

Re: [PHP] HTTP POST Question

2001-02-20 Thread Julian Wood
atever) into > the local file (in this case, your PHP file). > > >> >> >>> -Original Message- >>> From:Milan Mlynarcik [SMTP:[EMAIL PROTECTED]] >>> Sent:Monday, February 19, 2001 7:33 AM >>

RE: [PHP] HTTP POST Question

2001-02-19 Thread John Monfort
s case, your PHP file). > > > > -Original Message- > > From: Milan Mlynarcik [SMTP:[EMAIL PROTECTED]] > > Sent: Monday, February 19, 2001 7:33 AM > > To: Montgomery-Recht, Evan > > Subject:Re: [PHP] HTTP POST Question > > > &g

Re: [PHP] HTTP POST Question

2001-02-19 Thread John Monfort
I've been struggling with the same idea. I haven't been able to process the returned value, but I've the following methods to DISPLAY the cgi results. Although, the PHP has no way of knowing wether the CGI evaluated to a Yes or No result. If you solve this, then please let me know.

RE: [PHP] HTTP POST Question

2001-02-19 Thread Montgomery-Recht, Evan
Monday, February 19, 2001 9:06 AM > To: Montgomery-Recht, Evan > Subject: Re: [PHP] HTTP POST Question > > You can do it with socket functions. > - > Milan Mlynarcik > Web Programmer > Charmed Technolog

RE: [PHP] HTTP POST Question

2001-02-19 Thread Montgomery-Recht, Evan
Is that all that has to be done? thanks, evan > -Original Message- > From: Milan Mlynarcik [SMTP:[EMAIL PROTECTED]] > Sent: Monday, February 19, 2001 7:33 AM > To: Montgomery-Recht, Evan > Subject: Re: [PHP] HTTP POST Question > > You have to use header() functio

RE: [PHP] HTTP POST Question

2001-02-19 Thread MList
To: [EMAIL PROTECTED] Subject: [PHP] HTTP POST Question Good morning... This should be a good monday morning question. I have a cgi-bin written in perl (it's actually, a interface to a perl-module which is a interface to a telnet-like protocol). Anyways what I need to do is I have al

[PHP] HTTP POST Question

2001-02-19 Thread Montgomery-Recht, Evan
Good morning... This should be a good monday morning question. I have a cgi-bin written in perl (it's actually, a interface to a perl-module which is a interface to a telnet-like protocol). Anyways what I need to do is I have already existing code written in PHP, but at some point I need to cal