Let's say I have something like this:
echo "This is a $variable";
echo "<?php echo $var; ?>";
How can I make it simply output:
This is a $variable
<?php echo $var; ?>
Instead of trying to parse the variables?
|
Let's say I have something like this:
How can I make it simply output:
Instead of trying to parse the variables? |
|||
|
|
Use single-quotes rather than double-quotes:
Output:
|
|||
|
|
|
Use single-quotes instead of double-qoutes:
If you want to show it in a web browser, use htmlentities so it's not interpreted as a html tag:
|
|||
|
|
|
Use single quotes
or if you need double quotes escape $ sign with slash in front of it like:
or use |
|||
|
|