The Wrong Way
<?php
$ar
['name'] = 'Sterling';

for (
$i 0$i 20; ++$i) {
    print 
$ar['name'];
}
? >