> I have a script that switches.
 > switch($pid)
 > {
 >     case 1:
 >     break;
 > 
 >     case 2:
 >     break;
 > }
 > 
 > Now I'm doing a check in case 1 and if everything goes well, 
 > i want to switch directly to case 2 while the script is runny.
 > 
 > How would i do that ???

In the specific case above you could do something like this in your case
1 - 

  case 1:
  if (some test)
  {
     test sucessful - on to case 2
  } else {
     break;
  }

That will fall through from case 1 to case 2 depending on the success of
a check.

CYA, Dave



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to