mirror of
https://github.com/UnickSoft/graphonline.git
synced 2025-07-01 15:26:12 +00:00
17 lines
339 B
PHP
17 lines
339 B
PHP
<?php
|
|
|
|
include ("../core/config/main.php");
|
|
|
|
//if ("RdukIxdb0Lxc+uNhgfFXb7ll" == $_POST["notification_secret"])
|
|
{
|
|
$file = fopen("../" . $g_config['donateTransactions'], "a");
|
|
if ($file)
|
|
{
|
|
fprintf($file, "%d\n", $_POST["amount"]);
|
|
fclose($file);
|
|
}
|
|
}
|
|
|
|
|
|
?>
|