Login   Register  
PHP Classes
elePHPant
Icontem

File: sample/fail.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Vagharshak Tozalakyan  >  PHP Interface to Webmoney  >  sample/fail.php  >  Download  
File: sample/fail.php
Role: Example script
Content type: text/plain
Description: Example
Class: PHP Interface to Webmoney
Submit payment requests to Webmoney
Author: By
Last change: foo
Date: 2006-03-10 05:12
Size: 1,084 bytes
 

Contents

Class file image Download
<?php
  
require_once '../webmoney.inc.php';
  
$wm_result = new WM_Result();
  
$wm_result->method WM_POST;
  if (
$wm_result->GetForm() == WM_RES_OK)
  {
    echo 
'<b>Transaction failed!</b><br /><br />';
    echo 
'Purchase number: ' $wm_result->payment_no '<br />';
    echo 
'Bill number: ' $wm_result->sys_invs_no '<br />';
    echo 
'Payment number: ' .  $wm_result->sys_trans_no '<br />';
    echo 
'Date of payment: ' .  $wm_result->sys_trans_date '<br />';
    foreach (
$wm_result->extra_fields as $field=>$value)
    {
      echo 
$field ': ' $value '<br />';
    }
  }
?>

<!--
Just for test....
<form method="post" action="fail.php">
<input type="hidden" name="LMI_PAYMENT_NO" value="1234" />
<input type="hidden" name="LMI_SYS_INVS_NO" value="281" />
<input type="hidden" name="LMI_SYS_TRANS_NO" value="558" />
<input type="hidden" name="LMI_SYS_TRANS_DATE" value="20020314 14:01:14" />
<input type="hidden" name="FIELD1" value="VALUE 1" />
<input type="hidden" name="FIELD2" value="VALUE 2" />
<input type="submit" />
</form>
-->