* Thus wrote Pierre:
> Hi all
> I've a little problem with creating a dynamic var.
> This is my line code :
> $erreur .='Le champs '.${'corresp_chps[\''.$champs.'\']'}.'';
You're making it more complicated that it needs to be:
$erreur .= 'Le champs '. $corresp_chps[$champs] .'';
Curt
--
Firs
Hi all
I've a little problem with creating a dynamic var.
This is my line code :
$erreur .='Le champs '.${'corresp_chps[\''.$champs.'\']'}.'';
Yes i need the quote, cause it's not my var but a webservice one and the
name var is 001 so i've indexed my array with '001' etc..;
Thx a lot
And this is
2 matches
Mail list logo