Bonjour,
je justifie mon statut de (vieux) débutant : je souhaite créer une fonction qui ajoute une donnée à un tableau.
Voici mon code actuel :
Avec ce code, le tableau $this->id_application n'est pas alimenté. Comment faut faire, SVP ?
Code php : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7 public function FeedIDApplication( $appli_name, $ID) { $ID[]=$appli_name; } //l'appel à la fonction : $LCSVInBDD->FeedIDApplication( $applicationname, $this->id_application);
Partager