<?php
///////////////////////////////////////////////////////////////////////////////////////////
///Script PHP/MYSQL of management of classifieds ads developed by Script PAG
///Script PAG all rights reserved. Use under license. http://www.script-pag.com
///////////////////////////////////////////////////////////////////////////////////////////

############################################################

require_once __DIR__.'/../all_fns.php';

pool::execute('beforestart');

///////////////////////////////////
//Display phone of the ad
//////////////////////////////////

if(isset($_POST['id']))
{	
	$id_ad	= (int) $_POST['id'];
	
	$phone = get_phone_ad($id_ad);
}
else $phone = 0;

echo '<img src="'. URL .'/template/images/icons/icon_ad_contact_phone.png" alt="" />@'. $phone;

