Ok!, i have a problem with the redirect, as when using this plugin, it uses GET instead of POST, which of course means values are display within the web address, when directed to payment site.
Now! I know you are not supposed to enter <form> etc tags inside 'Form Code' code boxes, BUT!
Using PHP, can you control, if or when, the form content is displayed depending on a value posted to the form page. Then using PHP, could i insert a second form to show in its place?
example rough:
<?php
if($_POST["showform"]==1)
{
?>
form 1 code......
<?php
}
else
{
echo "</form>"; //closing tag to take place of chornoform closing form tag
echo "<form action=\"paymentsite.com\" method=\"post\">";
//rest of code to process payment
}
//no closing tag as chornoform closing form tag will be used
?>
will this work? or will this cause problems within chronoform app.
Now! I know you are not supposed to enter <form> etc tags inside 'Form Code' code boxes, BUT!
Using PHP, can you control, if or when, the form content is displayed depending on a value posted to the form page. Then using PHP, could i insert a second form to show in its place?
example rough:
<?php
if($_POST["showform"]==1)
{
?>
form 1 code......
<?php
}
else
{
echo "</form>"; //closing tag to take place of chornoform closing form tag
echo "<form action=\"paymentsite.com\" method=\"post\">";
//rest of code to process payment
}
//no closing tag as chornoform closing form tag will be used
?>
will this work? or will this cause problems within chronoform app.