Hi,
What are you trying to do this code seems like it isn't suppose to do anything besides give errors. It makes no sense.
First of all what is blah it is not a variable since it doesn't have $ in front of it. And what is this break suppose to do. I've only seen the break command in a switch statement or loop.
here is an example when to use the break command:
Code:
switch ($i) {
case 5:
echo "At 5<br />\n";
break 1; /* Exit only the switch. */
case 10:
echo "At 10; quitting<br />\n";
break 2; /* Exit the switch and the while. */
default:
break;
}
What are you trying to achieve?
__________________________________________________ ________
I am DJ Kat...that's my name. Its a D and a J and a Kat with a K.