Files
safechat/html/functions.php
2015-07-08 07:13:58 +00:00

13 lines
202 B
PHP

<?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;
}
?>