Hi everyone, i have a problem, look at this small PHP code
$currency_symbol = '£'; \\\ Thats £
print "Price: $currency_symbol5";
The item price is 5 pounds, but because the 5 is attached, the code thinks the string name is $currency_symbol5
It does not work, to solve this, i put a space between them, like this...
$currency_symbol = '£'; \\\ Thats £
print "Price: $currency_symbol 5";
But it looks funny on my website, it looks like this £ 5
How to solve this, thank you in advance