From:             [EMAIL PROTECTED]
Operating system: freeBSD
PHP version:      4.0.4pl1
PHP Bug Type:     Reproduceable crash
Bug description:  error with switch() control structure syntax error reporting


If there is a syntax error in my switch control structure, my script returns a message 
pop-up 'The server returned an invalid or unrecognized response.', 
It seems that the syntax of the switch control structure is not checked properly 
before processing the script. 
this is my invalid switch structure (missing a 'case' statement):
$varX = "a";
switch($varX){
  "a":
    echo("a");
    break;
  case "b":
    echo("b");
    break;
}

check it out!


-- 
Edit Bug report at: http://bugs.php.net/?id=9566&edit=1



-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to