Here is an example post with some example code below:
<?php
$answer = 42;
$question = 1;
while ( $question <= $answer ){
echo 'Searching for the answer to life, the universe, and everything...<br>';
$question++;
}
echo $answer . '? - looks like you've found it...';
?>

