So I have an array, that goes a bit like:
$concat=array("DARK HORSE,KATY PERRY", "DARK HORSE,KATY PERRY", "WHEN IT RAINS,PARAMORE", "LITHIUM,NIRVANA")
//$concat = song and artist together separated by a comma
And I need to output the value that occurs the most, so in the array above I would need to output the string = "DARK HORSE,KATY PERRY"
thank you :)