tableau - PHP - Programmation
Marsh Posté le 19-04-2005 à 14:56:55
utilise le bouton approprié pour poster du code, c'est illisible là
sinon au lieux d'utiliser list et each, ya foreach qui est bien pratique
Marsh Posté le 19-04-2005 à 15:07:35
sorry j'ai déclaré mon tableau en dehors de la fonction, cette valeur était donc vide
Marsh Posté le 19-04-2005 à 14:46:29
bonjour comment passer un tableau en parametre ds une fonction?
Warning: Variable passed to each() is not an array or object
or
function champSelect($pNom,$pListe,$pDefaut,$pTaille=1,$pCSS=-1) {
if ($pCSS != -1) $optionClass = "CLASS=\"$pCSS\"";
$s="<SELECT NAME=\"$pNom\" SIZE='$pTaille' $optionClass>\n";
echo "echoff".$pListe;
while (list($val,$libelle) = ****** each *****($pListe)) {
if ($val != $pDefaut)
*****$Albert**** = array ("a" => "valeura","b" => "valeurb" );
$form->champSelect("albert",*****$Albert****,"defaut",2);
thanks!