added missing files
This commit is contained in:
13
html/functions.php
Normal file
13
html/functions.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
function error($txt) {
|
||||
echo json_encode(array('success' => false, 'txt' => $txt));
|
||||
exit;
|
||||
}
|
||||
|
||||
function success($txt) {
|
||||
echo json_encode(array('success' => true, 'txt' => $txt));
|
||||
exit;
|
||||
}
|
||||
|
||||
?>
|
Reference in New Issue
Block a user