Color me stupid here, but is there a loop that doesn't require something to stop it?
I mean like:
except that requires a while();PHP Code:do {
//blah blah, code to break in here
}
Right now I'm just doing this:
Thanks in advance.PHP Code:do {
//blah blah, code to break in here
} while(1 != 2);




Reply With Quote