<?php  
include_once "../../conexao/functions.php";
if (isset($_POST['app_id'])) {
	$app_id = $_POST['app_id'];

	if (statusApp($app_id)) {
		echo true;
	}
}

?>