Forum Moderators: coopster
$x=0; //sets a boolean style verriable
while($n=9){
if ($x==0){
//do whatever;
}
$x=1; //basicly says that the while statment has executed at least one time
//do all the rest;
}
could also do something like ++$x; and keep a tally of how many times the while statment has cycled.
but I want a statment to happen the first time and only the first time and other statments to happen as normal.
Sarah