blob: 919977a7340afa13e8fa667ca31344b844fd8aac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<%= include('header', 'Recharge results') %>
<%= if ( $error ) {
$OUT .= qq!<FONT SIZE="+1" COLOR="#ff0000">Error processing your prepaid card: $error</FONT>!;
} else {
$OUT .= 'Prepaid card recharge successful!<BR><BR>';
$OUT .= '$'. sprintf('%.2f', $amount). ' added to your account.<BR><BR>'
if $amount;
$OUT .= $duration. ' added to your account.<BR><BR>'
if $seconds;
$OUT .= 'Thank you.';
} %>
<%= include('footer') %>
|