blob: 9cdb65e3669a3337628647ae49cb2f22586ab285 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<%= $url = "$selfurl?session=$session_id;action="; ''; %>
<%= include('header', 'Payment results') %>
<%= if ( $error ) {
$OUT .= qq!<FONT SIZE="+1" COLOR="#ff0000">Error processing your payment: $error</FONT>!;
} else {
$OUT .= 'Your payment was processed successfully. Thank you.';
} %>
<%= include('footer') %>
|