I have a problem with osCommerce shop engine. I use Third Party payment site. If the customer won't click to get back into my page, the order is not being saved. Here is the code of two options, the first is url of external web page, the second shows a page which saves the order (checkout_success.php). Can I do anything to open them both?
<?php
if (isset($$payment->form_action_url)) {
$form_action_url = $$payment->form_action_url; ///opens external site
} else {
$form_action_url = tep_href_link(FILENAME_CHECKOUT_PROCESS, '', 'SSL'); ///saves the order
}
?>