hi all,
this is a very simple question regarding looping.
in my script my while loop is not looping, it will do one run of the statement with in the while { } braces.
the condition for the while i need to use is
while ( X != 0 );
if i set the X count to any thing but 0 prior to the while loop my script freezes.
but im presuming the reason my while loop only runs once is due to X = 0 as soon as the while loop begins?
there is a function in my while loop that changes X, i know this is working as i have been document.write(X); after every line that changes X.


