If i write this
$page = 'start';
for (;;) {
include "$page.inc" ;
}
and inside start.inc I put a "break;" it should work, right? no it
doesn't. And why isn't there any "goto" statement in PHP? is it
impossible for code in the start.inc to get out of my loop?
john
$page = 'start';
for (;;) {
include "$page.inc" ;
}
and inside start.inc I put a "break;" it should work, right? no it
doesn't. And why isn't there any "goto" statement in PHP? is it
impossible for code in the start.inc to get out of my loop?
john
Comment