コード例 #1
0
ファイル: close_day.php プロジェクト: oalkhanishvili/track2
<?php

include 'class/tbcpay.lib.php';
use WeAreDe\TbcPay\TbcPayProcessor;
$Payment = new TbcPayProcessor('/home/tsexpres/domains/tsexpress.ge/public_html/class/tbc.pem', 'dzroxuna90', $_SERVER['REMOTE_ADDR']);
$result = $Payment->close_day();
?>


<html>
<head>
    <title>TBCPAY</title>
</head>

<body>
 <h2>Response:</h2>
    <?php 
echo date('m/d/Y h:i:s a', time());
?>
    <p><?php 
print_r($result);
?>
</p>
   
   <?php 
$message = "Line 1\r\nLine 2\r\nLine 3";
// In case any of our lines are larger than 70 characters, we should use wordwrap()
$message = wordwrap($message, 70, "\r\n");
mail('*****@*****.**', 'My Subject', $message);
?>