Save personal, I have the following function
exec($dia, $mes, $ano);
I would like to make a foreach
to run it through an array basis. I passed as follows
$a=array("1,2,2016", "2,2,2016","3,2,2016");
foreach($a as $as){ exec($as) };
But it presents the error of the second argument onwards:
Missing argument
How can I pass these parameters?