Parse error: parse error, unexpected T_DEFAULT in /home/djstop/public_html/test/phatfx.php on line 94
Please help. I double checked my code and everything is right.
Printable View
Parse error: parse error, unexpected T_DEFAULT in /home/djstop/public_html/test/phatfx.php on line 94
Please help. I double checked my code and everything is right.
post a chunck of code, that is around and including that line.
PHP Code:switch ($action) {
case Default :
the default is not to have a case on it.PHP Code:switch ($action) {
case Default :
if $action doesn't equal those 2 cases then it will go to the default.PHP Code:switch ($action) {
case something: break;
case something else: break;
default:
}