I am able to create array values using
$array = array("key" => "value" ... );
Now I want to add them dynamically after assigning the value to $array
I am able to create array values using
$array = array("key" => "value" ... );
Now I want to add them dynamically after assigning the value to $array
you can access your array by using []
so
$array["new_key"] = "new value";