Files
safechat/html/functions.php

13 lines
202 B
PHP
Raw Normal View History

2015-07-08 07:13:58 +00:00
<?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;
}
?>