<!DOCTYPE html>
<html>
<body>

<?php
$str = "Hello World";
echo str_pad($str,20,".");
?>


</body>
</html>