purna7788 Posted January 4, 2021 Share Posted January 4, 2021 (edited) Hi All, I started creating a custom payment module for authorize.net for processing the credit cards. Created a custom form for entering the credit card details cc number, name , expiry date and CVV. In validation.php front controller fetching these values and making a call to authorize.net. Based on the response, we are calling either the order-confirmation page Or "ccfailure" front end controller to display error message from authorize.net. The Complete flow is working as expected. My problem is when submitting the Credit card form, I am able to see the user cc information in browser network tab in Query string parameters. This information is also appending the URL in the browser. Can anyone let me know How can I hide these details? Thanks In Advance Edited January 4, 2021 by purna7788 (see edit history) Link to comment Share on other sites More sharing options...
[email protected] Posted January 15, 2021 Share Posted January 15, 2021 Think you might have to post source or PM them for a dev to help you. Can't really fly blind. Link to comment Share on other sites More sharing options...
Prestachamps Posted January 15, 2021 Share Posted January 15, 2021 Hi, when submitting then send the form parameters with POST and not with GET, as most probably you're sending now with GET and this is why it's added to the URL. <form method="post"> Kind regards, Leo 2 Link to comment Share on other sites More sharing options...
[email protected] Posted January 17, 2021 Share Posted January 17, 2021 On 1/15/2021 at 2:35 AM, Prestachamps said: Hi, when submitting then send the form parameters with POST and not with GET, as most probably you're sending now with GET and this is why it's added to the URL. <form method="post"> Kind regards, Leo Thanks. That just helped me with one of my modifications. Appreciated. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now