I am having trouble with some code:
else if ($IDKood[3] . $IDKood[4] == 08) {
$Month = "August";
}
else if ($IDKood[3] . $IDKood[4] == 09) {
$Month = "September";
}
Essentially If the 2 numbers are equal to a given number I want it to output a month, this leads up to all months. Everything works well upto the number 08 and 09 and I can't seem to fix it. As I understand this has something to do with php itself, I tried to put the numbers in a string and integer to no avail.