Replies: 0
Hi everyone,
I’m installing a payment solution on my website. I want to use a post method to redirect a user on a payment page (and keep some informations).
So I use this POST code on a php file:
$redirect = ‘https://www.looink.com/wp-content/themes/classiads-child/MangopayCardregBDD.php’;
<form method=”post” action=”<?php echo $redirect; ?>”>
….
This code works fine. But when the new page appear, the URL is not good for a user (I think) :
https://www.looink.com/wp-content/themes/classiads-child/MangopayCardregBDD.php
I want to have a URL like this :
https://www.looink.com/payment/
Is it possible?
Thanks in advance.
Kniool.