I am trying to implement a payment form using an external payment company (epay.dk). I have made a Multi Page form where various parameters are selected under way. I the last form I would like to submit all the collected parameters to their site for the actual payment to take place. They require that the form is build up as below.
I tried making the last forms Submit URL be the https as below but I also need to rest of the parameters (name="ePay" target="ePay_window" id="ePay").
How do I go about and do that?
When I look at the generated HTML it looks like this (URL changed):
Greetings from Denmark,
Jesper
I tried making the last forms Submit URL be the https as below but I also need to rest of the parameters (name="ePay" target="ePay_window" id="ePay").
How do I go about and do that?
When I look at the generated HTML it looks like this (URL changed):
Greetings from Denmark,
Jesper
<form name="ChronoContact_Registration" id="ChronoContact_Registration" method="post" action="<URL>index.php?option=com_chronocontact&task=send&chronoformname=Register_domainPROPay" >
<form action="https://ssl.ditonlinebetalingssystem.dk/popup/default.asp" method="post" name="ePay" target="ePay_window" id="ePay">
<input type="hidden" name="merchantnumber" value="" />
<input type="hidden" name="amount" value="" />
<input type="hidden" name="currency" value="208" />
<input type="hidden" name="orderid" value="" />
<input type="hidden" name="windowstate" value="1" />
<input type="hidden" name="authmail" value="" />
<input type="hidden" name="addfee" value="0" />
<input type="hidden" name="language" value="2" />
</form>