Is there a better/smarter/nicer way to code something like this?
for ($p=0;$p<26;$p++) { echo " "; }
I tried: echo " "*26;
but that didn't work in PHP.
printf('%26s','');