<?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';

$disc = '';

foreach($cache_cat as $v)
{
	if($v['id_cat'] == $_POST['form_disc'])
	$disc = (int) $v['disc'];
}

?>
<div class="flex-container div-form">
	<label class="title" lfor="disc"><?php echo $language_adm['page_disc_txt']; ?></label>
	<div class="label">
		<input type="checkbox" id="disc" name="disc" value="1"  <?php if($disc == 1) echo 'checked="checked"'; ?> />
		<label for="disc"></label>
	</div>
</div>