View Single Post
  #2  
Old 11-29-2009, 05:04 AM
cbk1994 cbk1994 is offline
the fake one
cbk1994's Avatar
Join Date: Mar 2003
Location: San Francisco
Posts: 10,718
cbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond repute
Send a message via AIM to cbk1994
switch works fine

PHP Code:
temp.foo "bar";

switch (
foo) {
  case 
"test":
    echo(
"blah"); // you won't see this
  
break;
  
  case 
"bar":
    echo(
"hi"); // you will see this
  
break;

__________________
Reply With Quote