Re: [PHP] Save and Continue

2007-03-12 Thread Richard Lynch
On Wed, March 7, 2007 11:31 am, Tijnema ! wrote: > But ofcourse you could add a lot of things to a shopping cart and > checkout > once > > btw, it's safer to use things like Paypal... Unless PayPal arbitrarily decides they don't like you, and shuts down your account, holding all your money in

Re: [PHP] Save and Continue

2007-03-12 Thread Richard Lynch
On Wed, March 7, 2007 10:39 am, Dan Shirah wrote: > I am trying to think through my new forms process. I want to allow a > customer to submit multiple orders using the same credit card. At > the > bottom of my form I will have a "Save" link and a "Save and Submit > Additional" link/checkbox. > >

Re: [PHP] Save and Continue

2007-03-11 Thread Robert Cummings
On Sun, 2007-03-11 at 10:31 -0400, tedd wrote: > At 10:51 AM -0500 3/7/07, Robert Cummings wrote: > >On Wed, 2007-03-07 at 10:39 -0500, Dan Shirah wrote: > >> > >> then return to the same screen with the credit card > >> information still populated > > > >You should treat credit card information

Re: [PHP] Save and Continue

2007-03-11 Thread tedd
At 10:51 AM -0500 3/7/07, Robert Cummings wrote: On Wed, 2007-03-07 at 10:39 -0500, Dan Shirah wrote: then return to the same screen with the credit card information still populated You should treat credit card information like a hot potato... get rid of it as soon as possible. What happens

Re: [PHP] Save and Continue

2007-03-07 Thread Tijnema !
So, what is your actual problem? you can simple add all items to a session, and then when checking out, getting all data from the session. *means all data is lost when user leaves page... Tijnema On 3/7/07, Dan Shirah <[EMAIL PROTECTED]> wrote: Rght, that is similar to what I am trying to do

Re: [PHP] Save and Continue

2007-03-07 Thread Dan Shirah
Rght, that is similar to what I am trying to do...let them inout several items to be paid on and let them all be tied to the same credit card to be charged. On 3/7/07, Tijnema ! <[EMAIL PROTECTED]> wrote: But ofcourse you could add a lot of things to a shopping cart and checkout once btw,

Re: [PHP] Save and Continue

2007-03-07 Thread Tijnema !
But ofcourse you could add a lot of things to a shopping cart and checkout once btw, it's safer to use things like Paypal... Tijnema -- To the full PHP list now On 3/7/07, Jochem Maas <[EMAIL PROTECTED]> wrote: Robert Cummings wrote: > On Wed, 2007-03-07 at 10:39 -0500, Dan Shirah wrote

Re: [PHP] Save and Continue

2007-03-07 Thread Jochem Maas
Robert Cummings wrote: > On Wed, 2007-03-07 at 10:39 -0500, Dan Shirah wrote: >> then return to the same screen with the credit card >> information still populated > > You should treat credit card information like a hot potato... get rid of > it as soon as possible. What happens if Johnny Forgetfu

Re: [PHP] Save and Continue

2007-03-07 Thread Robert Cummings
On Wed, 2007-03-07 at 10:39 -0500, Dan Shirah wrote: > > then return to the same screen with the credit card > information still populated You should treat credit card information like a hot potato... get rid of it as soon as possible. What happens if Johnny Forgetful forgets to log out of his ses

Re: [PHP] Save and Continue

2007-03-07 Thread Tijnema !
Hi, i was more thinking about automatically going to save.php, and if checked (the code u used) redirect back to your shop, cart, etc. using header function. Tijnema On 3/7/07, Dan Shirah <[EMAIL PROTECTED]> wrote: Hello All, I am trying to think through my new forms process. I want to allo

[PHP] Save and Continue

2007-03-07 Thread Dan Shirah
Hello All, I am trying to think through my new forms process. I want to allow a customer to submit multiple orders using the same credit card. At the bottom of my form I will have a "Save" link and a "Save and Submit Additional" link/checkbox. Basically what I want to happen is that if the us