Files
crm.twinpol.com/modules/Accounts/getAddress.php
2025-05-12 15:44:39 +00:00

11 lines
193 B
PHP

<?php
include_once("modules/Accounts/Account.php");
$a=new Account();
if ($_GET['id']) {
$id = $_GET['id'];
$json = getJSONobj();
echo $json->encode($a->getAddress($id));
} else echo 0;
?>