循环打印html内容

<?php
    for ($x=1; $x<=10; $x++) {
?>
    <p>Hello World!</p>
<?php
    }
?>