Quote
Parse error: syntax error, unexpected T_LNUMBER, expecting T_CASE or T_DEFAULT or '}' in /home/faktionb/public_html/Admin/convert.php on line 6
The only things in convert.php are switch statements... Here is the code thats in convert.php. (line 6 is 01: in the first switch statement)
<?php
$month = $row['month'];
$day = $row['day'];
switch ($month) {
01:
$month == "January";
break;
02:
$month == "February";
break;
03:
$month == "March";
break;
04:
$month == "April";
break;
05:
$month == "May";
break;
06:
$month == "June";
break;
07:
$month == "July";
break;
08:
$month == "August";
break;
09:
$month == "September";
break;
10:
$month == "October";
break;
11:
$month == "November";
break;
12:
$month == "December";
break;
}
?>
I have tried everything I can think of. Even going to brute force with a crap load of if/else statements. Thanks to anyone who helps me out.
