I was wondering how can I add extra whitespace in php is it something like \\s please help thanks.
\\s
Is there a tutorial that list these kind of things th
pre is your friend.
<pre> <?php // code goes here ?> </pre>
Or you can "View Source" in your browser. (Ctrl+U for most browser.)
Use str_pad function. It is very easy to use. One example is below:
<?php $input = "Alien"; echo str_pad($input, 10); // produces "Alien " ?>