Re: [PHP] submitting to a remote form

2001-04-08 Thread Christian Reiniger
On Sunday 08 April 2001 08:50, you wrote: > Thanks for the info. Question: Is there a simple way to encode text? > > J rawurlencode() -- Christian Reiniger LGDC Webmaster (http://sunsite.dk/lgdc/) void sleep(){for(long int sheep=0;!asleep();sheep++);} -- PHP General Mailing List (http://www.p

RE: [PHP] submitting to a remote form

2001-04-07 Thread Joseph Bannon
Thanks for the info. Question: Is there a simple way to encode text? J -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECT

Re: [PHP] submitting to a remote form

2001-04-07 Thread Matt McClanahan
On Sun, Apr 08, 2001 at 12:31:35AM -0500, Joseph Bannon wrote: > > You can use fopen/fread to open the script remotely. > > > > Just append the query string onto the url something like this: > > > > www.example.com/example.php?var1=var > > > > ...and example.php will have $var1 with the value

RE: [PHP] submitting to a remote form

2001-04-07 Thread Joseph Bannon
> You can use fopen/fread to open the script remotely. > > Just append the query string onto the url something like this: > > www.example.com/example.php?var1=var > > ...and example.php will have $var1 with the value "var". That's basically > like using GET on a form. > > I believe that's what

Re: [PHP] submitting to a remote form

2001-04-07 Thread Plutarck
You can use fopen/fread to open the script remotely. Just append the query string onto the url something like this: www.example.com/example.php?var1=var ...and example.php will have $var1 with the value "var". That's basically like using GET on a form. I believe that's what you wanted to do?

[PHP] submitting to a remote form

2001-04-07 Thread Joseph Bannon
I have a remote php script on a remote server that I need to submit information to. Does PHP have the ability for me to submit information remotely? J Say I'm Hot! - Post Your Picture! http://www.sayimhot.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PR