/home/desid573/public_html/payment
NameSizeModeActions
assets/-0755rm
eway-rapid-php-master/-0755rm
pdd/-0755rm
xero/-0755rm
xero-2/-0755rm
xero-php-oauth2-master/-0755rm
10.php19410644editdlrm
11.php9920644editdlrm
approved.php15130644editdlrm
a_name_address.php9310644editdlrm
checktime.php14360644editdlrm
driverCheck.php7940644editdlrm
eCrypt.js684240644editdlrm
eway-rapid-php-master.zip572700644editdlrm
eWay.php426970644editdlrm
index.php560450644editdlrm
index1.php345060644editdlrm
index15May.php483660644editdlrm
indexOLD.php417930644editdlrm
indexTest.php425170644editdlrm
payment-shutdown.log5170644editdlrm
quote.php72180644editdlrm
test.php18710644editdlrm
thankyou.php241440644editdlrm
thankyouOLD.php301100644editdlrm
thankyouTest.php219500644editdlrm
tokenUpdate.php106730644editdlrm
updatetoken.php36960644editdlrm
xero-2-2.zip28341780644editdlrm
Edit: /home/desid573/public_html/payment/test.php (1871B)
'Mr.', 'FirstName' => 'John', 'LastName' => 'Smith', 'Country' => 'au', 'CardDetails' => [ 'Name' => 'John Smith', 'Number' => '4444333322221111', 'ExpiryMonth' => '12', 'ExpiryYear' => '25', 'CVN' => '123', ] ]; $response = $client->createCustomer(\Eway\Rapid\Enum\ApiMethod::DIRECT, $customer); $tokencustomerid = $response->Customer->TokenCustomerID; echo $tokencustomerid; exit; $transaction = [ 'Customer' => [ 'Reference' => 'A12345', 'Title' => 'Mr.', 'FirstName' => 'John', 'LastName' => 'Smith', 'CompanyName' => 'Demo Shop 123', 'JobDescription' => 'Developer', 'Street1' => 'Level 5', 'Street2' => '369 Queen Street', 'City' => 'Sydney', 'State' => 'NSW', 'PostalCode' => '2000', 'Country' => 'au', 'Phone' => '09 889 0986', 'Email' => 'demo@example.org', 'CardDetails' => [ 'Name' => 'John Smith', 'Number' => '4444333322221111', 'ExpiryMonth' => '12', 'ExpiryYear' => '25', 'CVN' => '123', ] ], 'Payment' => [ 'TotalAmount' => 1000, ], 'TransactionType' => \Eway\Rapid\Enum\TransactionType::PURCHASE, ]; $response = $client->createTransaction(\Eway\Rapid\Enum\ApiMethod::DIRECT, $transaction); $tokencustomerid = $response->Customer->TokenCustomerID; echo $tokencustomerid; print_r($response);