Hi all,
In my php code, I am echoing values from my database. Is there a way to put a £ in front of the price in php?
Current code:
[php]
echo “
[/php]
What I tried:
[php]
echo “
[/php]
But this just comes up with an error.
Thanks,
Jack
Hi all,
In my php code, I am echoing values from my database. Is there a way to put a £ in front of the price in php?
Current code:
[php]
echo “
What I tried:
[php]
echo “
But this just comes up with an error.
Thanks,
Jack
[php]echo “
[php]echo "
Should suffice
Sorted - thanks all, again! ;D