I was wondering how can I add extra whitespace in php is it something like \\s please help thanks.
Is there a tutorial that list these kind of things th
you can use the tag to prevent multiple spaces and linebreaks from being collapsed into one. Or you could use for a typical space (non-breaking space) and (or ) for line breaks.
But don't do just use a tag and adjust the margins with CSS.
Some copy...
Although, you should define the styles globally, and not inline as I have done in this example.
When you are outputting strings from PHP you can use "\n" for a new line, and "\t" for a tab.
Although, flags like \n or \t only work in double quotes (") not single wuotes (').