Hi,
I need to handle credit cards and would like some advice. I won't be storing
any credit card details for future payments but instead requiring the
customer to enter
their payment details each time they make a purchase. However, I'm worried about
the temporary storage of the details whilst checking out.
My checkout asks for the payment details (credit card etc) and then goes to the
review page before they click a final button to make the actual payment. I'm
concerned about storing the credit card information for use on the review page.
The customer can also go back to any part of the checkout and change
information as
needed, so I need to store this information until they finally click the "pay"
button.
I am using database session storage with a cron job to clear out the
old sessions
but I'm worried about the credit card info being available until the session
store is cleared out.
Shall I just ask for the credit card details on the review page? What would be
safest?
Many thanks,
Jordan