RE: [PHP] Accessing data posted from a different URL

2006-03-21 Thread Jay Blanchard
[snip] If the form is submitted from a web browser, the POSTed data IS available/visible (print_r) in the new web page. If the form--that is, any form--is submitted from an email client (any email client), the POSTed data IS NOT available/visible in the new web page. So... I can think of

[PHP] Accessing data posted from a different URL

2006-03-20 Thread René Fournier
I have a script that periodically sends an email that includes form post to a script, which is meant to do something with the posted data. My problem is that apparently some PHP security measure is not permitting the externally posted data to be access via $_POST. I assume this is due to

RE: [PHP] Accessing data posted from a different URL

2006-03-20 Thread Jay Blanchard
[snip] I have a script that periodically sends an email that includes form post to a script, which is meant to do something with the posted data. My problem is that apparently some PHP security measure is not permitting the externally posted data to be access via $_POST. I assume this is

Re: [PHP] Accessing data posted from a different URL

2006-03-20 Thread René Fournier
Hmm, perhaps I didn't explain clearly. To put it another: 1. A script sends an email to a user with sign-in details. 2. The user clicks a [submit] button in the email message called Quick Sign In 3. A web browsers opens to http://www.website.com/signin.php (from the form method=post

RE: [PHP] Accessing data posted from a different URL

2006-03-20 Thread Jay Blanchard
[snip] Hmm, perhaps I didn't explain clearly. To put it another: 1. A script sends an email to a user with sign-in details. 2. The user clicks a [submit] button in the email message called Quick Sign In 3. A web browsers opens to http://www.website.com/signin.php (from the form method=post

Re: [PHP] Accessing data posted from a different URL

2006-03-20 Thread Manuel Amador (Rudd-O)
Jay Blanchard wrote: [snip] Hmm, perhaps I didn't explain clearly. To put it another: 1. A script sends an email to a user with sign-in details. 2. The user clicks a [submit] button in the email message called Quick Sign In 3. A web browsers opens to http://www.website.com/signin.php (from

Re: [PHP] Accessing data posted from a different URL

2006-03-20 Thread Richard Lynch
#1. Show us the FORM. #2. Show us the email itself #3. Show us the code that processes the POST data. Without that, we're just guessing in the dark. Can you make the form work on your server, WITHOUT the email involved? Check your httpd.conf carefully. There is no inherent reason why this

Re: [PHP] Accessing data posted from a different URL

2006-03-20 Thread René Fournier
On 20-Mar-06, at 3:05 PM, Jay Blanchard wrote: [snip] Hmm, perhaps I didn't explain clearly. To put it another: 1. A script sends an email to a user with sign-in details. 2. The user clicks a [submit] button in the email message called Quick Sign In 3. A web browsers opens to

Re: [PHP] Accessing data posted from a different URL

2006-03-20 Thread Richard Lynch
On Mon, March 20, 2006 5:04 pm, René Fournier wrote: form method=POST target=SI action=http:// www.website.cominput type=hidden name=signindetails value=serialized and htmlentitized array values...input What does this value actually look like? How long is it? Is mail wrapping it to 72

Re: [PHP] Accessing data posted from a different URL

2006-03-20 Thread René Fournier
On 20-Mar-06, at 4:40 PM, Richard Lynch wrote: On Mon, March 20, 2006 5:04 pm, René Fournier wrote: form method=POST target=SI action=http:// www.website.cominput type=hidden name=signindetails value=serialized and htmlentitized array values...input What does this value actually look like?