RE: [PHP] Sending username/password

2008-09-06 Thread Boyd, Todd M.
-Original Message- From: Jay Moore [mailto:[EMAIL PROTECTED] Sent: Fri 9/5/2008 3:23 PM To: php-general@lists.php.net Subject: Re: [PHP] Sending username/password Wolf wrote: Jay Moore wrote: Greetings list! Is it possible (and if so, how) to send username and password information

Re: [PHP] Sending username/password

2008-09-06 Thread Richard Heyes
Seriously... you should just read the site. It's a library that mimics browser behavior. It will follow Location: headers, push POST variables, etc. Why not just give the page a glance? http://us3.php.net/manual/en/intro.curl.php If you don't have access to Curl, you could also look at the

Re[2]: [PHP] Sending username/password

2008-09-06 Thread ANR Daemon
Greetings, Richard Heyes. In reply to Your message dated Saturday, September 6, 2008, 18:53:31, Seriously... you should just read the site. It's a library that mimics browser behavior. It will follow Location: headers, push POST variables, etc. Why not just give the page a glance?

Re: Re[2]: [PHP] Sending username/password

2008-09-06 Thread Richard Heyes
I'd recommend HTTP_Client in that case. You could, but that uses HTTP_Request by the looks of it. -- Richard Heyes HTML5 Graphing for IE7, FF, Chrome, Opera and Safari: http://www.phpguru.org/RGraph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re[4]: [PHP] Sending username/password

2008-09-06 Thread ANR Daemon
Greetings, Richard Heyes. In reply to Your message dated Saturday, September 6, 2008, 21:26:25, I'd recommend HTTP_Client in that case. You could, but that uses HTTP_Request by the looks of it. You're right, but HTTP_Client offers some additional tools to, as you said, mimicking web browsers

[PHP] Sending username/password

2008-09-05 Thread Jay Moore
Greetings list! Is it possible (and if so, how) to send username and password information to a website with PHP? I would like to submit some information to some network devices we have, but they require login credentials to proceed. I would like to bypass the traditional username/password

Re: [PHP] Sending username/password

2008-09-05 Thread Robert Cummings
On Fri, 2008-09-05 at 15:01 -0500, Jay Moore wrote: Greetings list! Is it possible (and if so, how) to send username and password information to a website with PHP? I would like to submit some information to some network devices we have, but they require login credentials to proceed. I

Re: [PHP] Sending username/password

2008-09-05 Thread Wolf
Jay Moore wrote: Greetings list! Is it possible (and if so, how) to send username and password information to a website with PHP? In one word... CURL -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Sending username/password

2008-09-05 Thread Stut
On 5 Sep 2008, at 21:05, Robert Cummings wrote: On Fri, 2008-09-05 at 15:01 -0500, Jay Moore wrote: Greetings list! Is it possible (and if so, how) to send username and password information to a website with PHP? I would like to submit some information to some network devices we have, but

Re: [PHP] Sending username/password

2008-09-05 Thread Jay Moore
Stut wrote: On 5 Sep 2008, at 21:05, Robert Cummings wrote: On Fri, 2008-09-05 at 15:01 -0500, Jay Moore wrote: Greetings list! Is it possible (and if so, how) to send username and password information to a website with PHP? I would like to submit some information to some network devices we

Re: [PHP] Sending username/password

2008-09-05 Thread Robert Cummings
On Fri, 2008-09-05 at 21:07 +0100, Stut wrote: On 5 Sep 2008, at 21:05, Robert Cummings wrote: On Fri, 2008-09-05 at 15:01 -0500, Jay Moore wrote: Greetings list! Is it possible (and if so, how) to send username and password information to a website with PHP? I would like to submit

Re: [PHP] Sending username/password

2008-09-05 Thread Jay Moore
Wolf wrote: Jay Moore wrote: Greetings list! Is it possible (and if so, how) to send username and password information to a website with PHP? In one word... CURL A couple of people have responded (to me; not the list) with that very same response. I've heard of it, but never used it

Re: [PHP] Sending username/password

2008-09-05 Thread Stut
Jay Moore wrote: Stut wrote: On 5 Sep 2008, at 21:05, Robert Cummings wrote: On Fri, 2008-09-05 at 15:01 -0500, Jay Moore wrote: Greetings list! Is it possible (and if so, how) to send username and password information to a website with PHP? I would like to submit some information to some

Re: [PHP] Sending username/password

2008-09-05 Thread Jay Moore
Robert Cummings wrote: On Fri, 2008-09-05 at 21:07 +0100, Stut wrote: On 5 Sep 2008, at 21:05, Robert Cummings wrote: On Fri, 2008-09-05 at 15:01 -0500, Jay Moore wrote: Greetings list! Is it possible (and if so, how) to send username and password information to a website with PHP? I would

Re: [PHP] Sending username/password

2008-09-05 Thread Robert Cummings
On Fri, 2008-09-05 at 21:24 +0100, Stut wrote: Jay Moore wrote: Stut wrote: On 5 Sep 2008, at 21:05, Robert Cummings wrote: On Fri, 2008-09-05 at 15:01 -0500, Jay Moore wrote: Greetings list! Is it possible (and if so, how) to send username and password information to a website with

Re: [PHP] Sending username/password

2008-09-05 Thread Robert Cummings
On Fri, 2008-09-05 at 15:26 -0500, Jay Moore wrote: Robert Cummings wrote: On Fri, 2008-09-05 at 21:07 +0100, Stut wrote: On 5 Sep 2008, at 21:05, Robert Cummings wrote: On Fri, 2008-09-05 at 15:01 -0500, Jay Moore wrote: Greetings list! Is it possible (and if so, how) to send

Re: [PHP] Sending username/password

2008-09-05 Thread Micah Gersten
Jay Moore wrote: Robert Cummings wrote: On Fri, 2008-09-05 at 21:07 +0100, Stut wrote: On 5 Sep 2008, at 21:05, Robert Cummings wrote: On Fri, 2008-09-05 at 15:01 -0500, Jay Moore wrote: Greetings list! Is it possible (and if so, how) to send username and password information to a website

Re: [PHP] Sending username/password

2008-09-05 Thread Jochem Maas
Jay Moore schreef: Wolf wrote: Jay Moore wrote: Greetings list! Is it possible (and if so, how) to send username and password information to a website with PHP? In one word... CURL A couple of people have responded (to me; not the list) with that very same response. I've heard of it,

Re: [PHP] Sending username/password

2008-09-05 Thread Jay Moore
:) Sorry bout that. However, malformed URL bugs that cause your system to crash can't really be attributed to me ;) Cheers, Rob. The prompt that showed before my computer self-destructed referenced you specifically. Expect the invoice for my new quantum computer to come in the mail

Re: [PHP] Sending username/password

2008-09-05 Thread Jay Moore
That'll teach you to use Google Chrome. ;) Pshaw. IE5 4 lyfe, yo. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Sending username/password

2008-09-05 Thread Stut
Robert Cummings wrote: On Fri, 2008-09-05 at 21:24 +0100, Stut wrote: Jay Moore wrote: Stut wrote: On 5 Sep 2008, at 21:05, Robert Cummings wrote: On Fri, 2008-09-05 at 15:01 -0500, Jay Moore wrote: Greetings list! Is it possible (and if so, how) to send username and password information

Re: [PHP] Sending username/password

2008-09-05 Thread Robert Cummings
On Fri, 2008-09-05 at 15:37 -0500, Jay Moore wrote: :) Sorry bout that. However, malformed URL bugs that cause your system to crash can't really be attributed to me ;) Cheers, Rob. The prompt that showed before my computer self-destructed referenced you specifically. Expect

Re: [PHP] Sending username/password

2008-09-05 Thread Robert Cummings
On Fri, 2008-09-05 at 15:39 -0500, Jay Moore wrote: That'll teach you to use Google Chrome. ;) Pshaw. IE5 4 lyfe, yo. I have IE5 running in a vmware appliance. I check sites in it once in a while for kicks :) I also have IE 3 running and Netscape 4. It's amazing how ugly the new tech

Re: [PHP] Sending username/password

2008-09-05 Thread Robert Cummings
On Fri, 2008-09-05 at 17:45 -0400, Robert Cummings wrote: On Fri, 2008-09-05 at 15:39 -0500, Jay Moore wrote: That'll teach you to use Google Chrome. ;) Pshaw. IE5 4 lyfe, yo. I have IE5 running in a vmware appliance. I check sites in it once in a while for kicks :) I also have