Hi all,
I don't think this is explicitly a CodeIgniter question, but I'm using CodeIgniter for it, so here I am
I'm setting up an e-commerce site and need to send information to a hosted checkout solution (Mijireh, for those interested). So basically, the user will add items to their cart, then when they click 'Checkout' in their cart, they'll be redirected to Mijireh's hosted checkout along with information pertaining to their order, like the items in their order, and those items' prices.
Here's the thing: I can't seem to come up with a fool-proof way to actually send that information TO Mijireh without the possibility of that info being changed by unscrupulous users. For example, my first impulse was to simply put the prices and items in hidden form elements that would be submitted when they clicked 'Checkout', but using Inspect Element, they could go into the form and change that value before submitting. Putting the values in a SESSION or COOKIE variable still allows those values to be changed by the particularly driven user. How can I send information to a hosted checkout like Mijireh without ANY possibility of unscrupulous users editing the information before it gets there?
Thanks!