How do I use inverted commas in the echo function in PHP?

echo, php

Solution

Escape them with backslashes:

echo "<script type=\"text/javascript\">";

Alternatively, you can use a different set of quotes:

echo '<script type="text/javascript">';

Or, HEREDOC syntax:

echo <<<END
<script type="text/javascript">;
END;

Problem

How do I use inverted commas in the echo function in PHP? ``` echo "<script type="text/javascript">"; ``` doesnt work well. Thank you!

Original source