13 lines
202 B
PHP
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;
|
|
}
|
|
|
|
?>
|