html
Where the variables come to play!
Loops of Doom | Conditional Logic More Loops, Less Sleepfor ($i = 0; $i < 10; $i++) {
echo "Variable Vantastic";
}
if ($i > 5) {
echo "You're a winner!";
} else {
echo "You're a loser.";
}
More Loops, Less Sleep for the full story!