Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
$spaces=3;
$string="ÀyÀuppaÀsdfer";
for($i=0;$i<$spaces;$i++)
$string.=' ';
$spaces=3;
$string="ÀyÀuppaÀsdfer";
$string=str_pad ($string, $spaces, ' ', STR_PAD_RIGHT)
$spaces=3;
$string="ÀyÀuppaÀsdfer";
print str_pad ($string, strlen($string)+$spaces);