View Single Post
  #8 (permalink)  
Old 05-09-2008, 04:32 AM
senraj senraj is offline
D-Web Master
 
Join Date: Jul 2007
Posts: 418
senraj is on a distinguished road
Post Re: PHP Control Structures

Hi,

switch Statements

case must appear last in the list of cases or not appear at all:

PHP Code:
switch ($answer) {
case 
'y':
case 
'Y':
print 
"The answer was yes\n";
break;
case 
'n':
case 
'N':
print 
"The answer was no\n";
break;
default:
print 
"Error: $answer is not a valid answer\n";
break;

__________________
Regards,
Senraj.A
Reply With Quote