ok maybe my php is playing up or it has always done this.
$time_two_in = "12:38";
$explode_time_two_in = explode(":", $time_two_in);
echo"<BR>";
echo $time_two_in[1];
echo"<BR>";
echo $time_two_in[3];
i thought would seperate into
$time_two_in[0] = 12
$time_two_in[1] = 38
but it actually outputs this
$time_two_in[0] = 1 // this being the first letter in the string.
$time_two_in[1] = 2 // this being the second letter in the string.
why does it do this??
🙁