<?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_adm.php';

///////////////////////////////////
//Display note of deposit ad
//////////////////////////////////

$note = '';

foreach($cache_cat as $v)
{
	if($v['id_cat'] == $_POST['options'])
	{
		foreach($cache_lang as $row)
		{
			$code_lang = stripslashes(htmlspecialchars($row['code_lang'], ENT_QUOTES)); 
		
			$note = '';
				
			if(isset($v['note_cat_'. $code_lang]))
			$note = stripslashes(htmlspecialchars($v['note_cat_'. $code_lang], ENT_QUOTES));
			
			break;
		}
	}
}

if (!empty($note))
echo nl2br($note);
