"Importer un CSV",
"arbo" => array(
"Comptes bancaires" => NULL,
$banque["label"] => "/compte-4.html",
"Insérer une ligne" => NULL)
));
$lastLigne = banque::lastArrayRecord(4); // ID du compte épargne
if($lastLigne["debit"] == "0.00" AND $lastLigne["credit"] == "0.00"){
$montant = "0.00";
$type = "Intial";
} elseif($lastLigne["debit"] == "0.00"){
$montant = $lastLigne["credit"];
$type = "Crédit";
} else {
$montant = $lastLigne["debit"];
$type = "Débit";
}
?>