mirror of
https://github.com/UnickSoft/graphonline.git
synced 2026-04-19 22:50:22 +00:00
first commit
This commit is contained in:
16
cgi-bin/addDonate.php
Normal file
16
cgi-bin/addDonate.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?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);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user