#!/usr/bin/env php
<?php
for ($i = 1; $i < 10; $i++) {
    echo "\nDaniel" . ($i + 1);
    sleep(1);
}