Nope -- it works perfectly ! There was a problem with my ipnGenerator code.
Thanx again !!
Search found 7 matches
- Wed Oct 21, 2009 11:29 am
- Forum: PHP - Code
- Topic: How do I capture the raw URL-string $_POST data ?
- Replies: 5
- Views: 250
- Wed Oct 21, 2009 11:24 am
- Forum: PHP - Code
- Topic: How do I capture the raw URL-string $_POST data ?
- Replies: 5
- Views: 250
Re: How do I capture the raw URL-string $_POST data ?
Hey -- almost perfect !
The only odd thing I see is that the @ sign is displayed as '@' instead of %40.
However -- I think this is close enough for horseshoes and hand grenades !
Thanx much for your help !
Glenn
The only odd thing I see is that the @ sign is displayed as '@' instead of %40.
However -- I think this is close enough for horseshoes and hand grenades !
Thanx much for your help !
Glenn
- Wed Oct 21, 2009 10:27 am
- Forum: PHP - Code
- Topic: How do I capture the raw URL-string $_POST data ?
- Replies: 5
- Views: 250
Re: How do I capture the raw URL-string $_POST data ?
Thanx much el_gato - will use this if I can't find any other solution. However, this dumps the data after processing it into an array and I am looking for a way to capture the raw URL-encoded string before this happens -- with ampersands intact (as field=value seperators), %FF type hex numbers (in l...
- Wed Oct 21, 2009 10:03 am
- Forum: PHP - Code
- Topic: How do I capture the raw URL-string $_POST data ?
- Replies: 5
- Views: 250
How do I capture the raw URL-string $_POST data ?
I'm looking for a way to capture the raw URL-encoded string from which $_POST variables come (complete with ampersands, hex numbers, etc.) (I need this in order to visually check the validity of PayPal IPNs being sent to my handler code.) Is there a function to capture this as a string ? Thanx ! Glenn
- Tue Apr 21, 2009 12:09 am
- Forum: PHP - Code
- Topic: How do you direct PHP output to another frame ?
- Replies: 3
- Views: 615
Re: How do you direct PHP output to another frame ?
Tsaris,
Forgot to mention one thing. Had to change the method to "post". When I used "get" the output was truncated.
Thanx again !
Forgot to mention one thing. Had to change the method to "post". When I used "get" the output was truncated.
Thanx again !
- Tue Apr 21, 2009 12:02 am
- Forum: PHP - Code
- Topic: How do you direct PHP output to another frame ?
- Replies: 3
- Views: 615
Re: How do you direct PHP output to another frame ?
tasairis,
Works great ! Thank you very much.
Glenn
Works great ! Thank you very much.
Glenn
- Mon Apr 20, 2009 11:18 pm
- Forum: PHP - Code
- Topic: How do you direct PHP output to another frame ?
- Replies: 3
- Views: 615
How do you direct PHP output to another frame ?
I have created a form in one frame and am trying to find a way to direct the output of my php script to the second frame when the user clicks on "submit". 1) I am willing to use either regular frames or iframes. 2) I am also willing to output to a file and make it the src of the 2nd frame ...