I have below code in php
<? php
$articleContent = " Blah ..
The game is on
Foo ";
?>
Also I have below JavaScript Code Also
<script>
var articleContent = "{$articleContent}"; // from php
/* I WANT TO USE THIS articleContent variable , but it cannot take it , it displays a ILLEGAL token error due to multi line string !*/
</script>