false, 'txt' => $txt)); exit; } /// Send Success To Client /** @return success message from server to client Function calls exit to terminate. Message format is json: @code { success: true, txt: 'success message string'; } @endcode */ function success($txt) { echo json_encode(array('success' => true, 'txt' => $txt)); exit; } ?>