> 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 s
Just don't do the break in case 1 if you want to fall through to case 2.
On Sat, 25 May 2002, Vincent Kruger wrote:
> 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 w
-Original Message-
> From: Vincent Kruger [mailto:[EMAIL PROTECTED]]
> Sent: Saturday, May 25, 2002 8:41 AM
> To: [EMAIL PROTECTED]
> Subject: [PHP] Function Switch($pid) - NEED HELP
> I have a script that switches.
> switch($pid)
> {
> case 1:
>
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 ???
--
PHP General Mailing List (http://www.php.net
4 matches
Mail list logo