fetchArray( $q_art );
$tot_art = sizeof($rs_art);
$imponibile_art = 0.0;
$iva_art = 0.0;
$sconto_art = 0.0;
//se ho almeno un articolo caricato mostro la riga
if( $tot_art>0 ){
for( $i=0; $i<$tot_art; $i++ ){
echo "
\n";
echo nl2br( html_entity_decode($rs_art[$i]['numero'], ENT_QUOTES, "utf-8") )."\n";
echo " | \n";
//data
echo "\n";
echo date("d/m/Y", strtotime($rs_art[$i]['datadoc']))."\n";
echo " | \n";
//data
echo "\n";
echo date("d/m/Y", strtotime($rs_art[$i]['datasoll']))."\n";
echo " | \n";
//Totale fattura
echo "\n";
echo " ".number_format( $rs_art[$i]['da_pagare'], get_var("Cifre decimali"), ",", "." )." €\n";
echo " | \n";
//indirizzo inviata
echo "\n";
echo " ".$rs_art[$i]['mailsoll']."\n";
echo " | \n";
//testo mail
echo "\n";
echo " ".$rs_art[$i]['tipomail']."\n";
echo " | \n";
echo "
\n";
}
}
?>