How to make a space in PHP?
Method 1: Use normal space.
Example:
<?php echo 'Hello World!'; ?>
Output:
Hello World!
Method 2: Use nbsp;
.
This method may be interesting if you want to show multiple spaces.
Example:
<?php echo 'Hello World!'; ?>
Output:
Hello World!