> On Fri, 2006-11-17 at 03:08 -0800, Sarah Foxton wrote: > > I have 2 scripts, > > > > After the 1st script is run/activated, i'll like it to automatically > > forward the result (POST) to the 2nd script > > > > Is that poss ? > > > > G
Normally, sending data via POST isn't necessary. You can often get by with a session variable or simply include the second script. However, if you do need to send POST variables (usually necessary to communicate with an outside script such as a credit card gateway) then the cURL library is probably the easiest way to compose and send a POST payload to a URL. James Keeline
