I have two arrays like this
Array1 (
[0] => 10:00:00-08
[1] => 10:02:00-08
[2] => 10:03:00-08
[3] => 10:04:00-08
[4] => 10:00:00-08
[5] => 10:00:00-08
[6] => 10:00:00-08
)
Array2 (
[0] => 19:00:00-08
[1] => 19:02:00-08
[2] => 19:03:00-08
[3] => 19:04:00-08
[4] => 19:00:00-08
[5] => 19:00:00-08
[6] => 19:00:00-08
)
I want The following output.
$a=10:00:00-08 - 19:00:00-08;
$b=10:02:00-08 - 19:02:00-08;
$c= 10:03:00-08 -19:03:00-08;
and so on....