9 lines
167 B
PHP
9 lines
167 B
PHP
|
|
<?php
|
||
|
|
include_once("modules/Leads/Lead.php");
|
||
|
|
$a=new Lead();
|
||
|
|
if ($_GET['lead_id']) {
|
||
|
|
$lead_id = $_GET['lead_id'];
|
||
|
|
echo $a->getAddresses($lead_id);
|
||
|
|
} else echo 0;
|
||
|
|
?>
|