Give four spaces between two words

Hi,

i want to concatenate this:

foo bar

But i want to give four spaces between “foo bar”.

I have tried this:


$navigation .= 'foo ';

$navigation .= ' '
$navigation .= ' '


$navigation .= ' bar';

but i get only 3 spaces between the words.

Any idea?

Regards

Javi

Trying using   instead of a [space] in your quotes.

as Jeff said:


$gap = str_repeat(" ", 4);

$navigation = 'foo'. $gap .'bar';

Thanks