Page 1 of 1

Form Action

Posted: Mon Jan 30, 2006 6:24 am
by scs3rd
Please help, I have scoured the web but to no avail.

I wish to post data to a different page than the next page to be visited.
Therefore the form action posts the data to the next page but that is the not the page I want the data to be posted too! Is there any way around this?

I hope this makes sense.

Thanks in advance

Posted: Mon Jan 30, 2006 6:39 am
by foobar
Post the data to the next page, and then send a POST request to the page you want the data to go to.
You'll either be using cURL or fsockopen().

Posted: Mon Jan 30, 2006 1:11 pm
by duk
why you just dont store DATA in a SESSION and then use it in the other page ?

Posted: Tue Jan 31, 2006 7:36 am
by scs3rd
Yeah, that was what I was looking for.

Thanks for your replies.