0
votes
0
votes
What’s wrong with my PHP array?
function directorGen($array)
{
$genreList = array();
foreach($array as $value)
{
$genreList[] = $value;
}
return $genreList;
}
//late …
