Declaration
A declaration is when you declare your variables and their types at the top of your script / class
Do While
The same as while, accept it executes the code once before checking the condition. Good for code you know needs to be used at least once or more.
Examples
[php]
do
{
//do stuff here
}
while($condition == true);
Note
See the while loop for further explanation on the loop.