@@ -83,13 +83,13 @@ |
||
| 83 | 83 | $output = '<html><head><meta charset="utf-8" />'; |
| 84 | 84 | $output .= '<script>function pay() { document.forms["pay"].submit(); }</script>'; |
| 85 | 85 | $output .= '</head><body onload="pay();"><form name="pay" method="post" action="'.$url.'">'; |
| 86 | - if ( !empty($data) ) { |
|
| 86 | + if (!empty($data)) { |
|
| 87 | 87 | foreach ($data as $key => $value) { |
| 88 | - $output.='<input type="hidden" name="'.$key.'" value="'.$value.'">'; |
|
| 88 | + $output .= '<input type="hidden" name="'.$key.'" value="'.$value.'">'; |
|
| 89 | 89 | } |
| 90 | 90 | } |
| 91 | - $output.='<input type="submit" value="doing the payment...">'; |
|
| 92 | - $output.='</form></body></html>'; |
|
| 91 | + $output .= '<input type="submit" value="doing the payment...">'; |
|
| 92 | + $output .= '</form></body></html>'; |
|
| 93 | 93 | |
| 94 | 94 | return $output; |
| 95 | 95 | } |