function total_faturas_restauracao()
{
    $ligacao = ligar_base_dados();
    $resultado = mysql_query("select count(*) from faturas, utilizadores where utilizadores.SetorActividade_ID_SECTOR=3 and \nfaturas.Inserido_Por=utilizadores.NIF", $ligacao);
    $row = mysql_fetch_array($resultado);
    return $row[0];
}
    vertical-align: middle;
}
td, th {
    padding: 5px;   
}
tr {
    height: 25px;   
}

</style>
	<body>
	
	
	<?php 
require_once "./_includes/funcoes.php";
ligar_base_dados();
$resultado = lista_coimas();
?>
	<legend> Lista de Coimas</legend>
	<table style="empty-cells:hide;" border="1" class="table" cellpadding="1" cellspacing="1">
    
    <tr>
        <th>Fatura</th><th>Emissor</th><th>Receptor</th><th>Data de emissao</th><th>Data de Registo</th><th>Data Limite</th>
		<th>Beneficio</th><th>Tipo de Fatura</th><th>Inserida Por</th><th>Total de Fatura</th><th>Valor da Coima</th></th>
    </tr>
    
    
        <?php 
while ($row = mysql_fetch_array($resultado, MYSQL_NUM)) {
    ?>
									<form id="lista_de_faturas">
function tipo_de_coimas()
{
    $ligacao = ligar_base_dados();
    $resultado = mysql_query("select * from coimas", $ligacao);
    return $resultado;
}
<?php

require_once "./_includes/funcoes.php";
$ligacao = ligar_base_dados();
$procura = $_GET["descricao"];
$query = mysql_query("SELECT * from parametros where designacao='{$procura}' ", $ligacao);
$row = mysql_fetch_array($query);
echo $row[2];
function total_beneficio_potencial()
{
    $ligacao = ligar_base_dados();
    $total = total_valor_faturas_comerciante() * get_taxa_beneficio();
    return $total;
}