Can't understand that when i do this:
$tableau= array("toto"=>3,4);
$tableau["ee"] = 12 ;
$tableau["rr"] = 12 ;
I got :Warning: Cannot use a scalar value
as an array in /home/anselme1/cemic/cemic.php on line 96
I also try this:
$tableau= array();
$tableau= array("toto"=>3,4);
$tableau["ee"] = 12 ;
$tableau["rr"] = 12 ;
but it doesn't seem to work.
If someone knows the answer, don't hesitate. Thanks