I'm trying to output different variations of text but it does not seem to be working. I have tried the examples on the web but with no luck.
For example, If i do the following command:
<?php echo “Test”; ?>
The output on my webpage is "Test" with quotes rather than Test without quotes? Shouldn't it output without the quotes?
If i put any spaces in my string, the page doesn't even load. For example:
<?php echo “Test Test”; ?>