i want to implode multiple array in php For Example
$day[] = array (1,2,3,4,5);
$month[] = array (1,2,3,4,5);
$year[] = array (2001,2002,2003,2004,2005);
$date = implode(";",$day."/".$month."/".$year);
I am expecting the output is
1/1/2001;2/2/2002;3/3/2003;4/4/2004;5/5/2005
Is this possible , Actually tried and its not working. can u help me to solve this problem.