Je souhaite coder cette matrice
$tot_prods = array( array ( "px_unit" => 600, "qte" => 1, "tva" => 1 ),
array ( "px_unit" => 10, "qte" => 1, "tva" => 1 ),
array ( "px_unit" => 110, "qte" => 1, "tva" => 1 ),
);
en utilisant la boucle suivantewhile ($ligne=mysql_fetch_array($resultat_commande))
{
extract($ligne);
$px_unit = $ligne['commande_detailPrix'];
$qte=$ligne['commande_detailQuantite'];
}
Comment faireMerci d'avance